summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg
blob: 08cddb38a6d40a0ad25a0cc741b0f9a46b5f5ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
#!/bin/bash

myver='2.5'
startdir=`pwd`

[ -f /etc/makepkg.conf ] && source /etc/makepkg.conf

strip_url() {
	echo $1 | sed 's|^.*://.*/||g'
}

msg() {
	echo $* >&2
}

checkdeps() {
	local missdep=`pacman -T $*`
	local deplist=""

	missdep=`pacman -T $*`
	ret=$?
	if [ "$ret" != "0" ]; then
		if [ "$ret" = "127" ]; then
			msg "==> Missing Dependencies:"
			msg ""
			nl=0
			for dep in $missdep; do
				echo -ne "$dep " >&2
				if [ "$nl" = "1" ]; then
					nl=0
					echo -ne "\n" >&2
					# add this dep to the list
					depname=`echo $dep | sed 's|=.*$||' | sed 's|>.*$||' | sed 's|<.*$||'`
					deplist="$deplist $depname"
					continue
				fi
				nl=1
			done
			msg ""
		else
			msg "==> ERROR: pacman returned a fatal error."
			exit 1
		fi
	fi
	echo $deplist
}


usage() {
	echo "makepkg version $myver"
	echo "usage: $0 [options]"
	echo "options:"
	echo "  -c, --clean      Clean up work files after build"
	echo "  -C, --cleancache Clean up source files from the cache"
	echo "  -s, --syncdeps   Install missing dependencies with pacman"
	echo "  -b, --builddeps  Build missing dependencies from source"
	echo "  -d, --nodeps     Skip all dependency checks"
	echo "  -i, --install    Install package after successful build"
	echo "  -f, --force      Overwrite existing package"
	echo "  -w <destdir>     Write package to <destdir> instead of the working dir"
	echo "  -p <buildscript> Use an alternate build script (instead of PKGBUILD)"
	echo "  -h, --help       This help"
	echo
	echo "  if -p is not specified, makepkg will look for a PKGBUILD"
	echo "  file in the current directory."
	echo
	exit 0
}

# Options
CLEANUP=0
CLEANCACHE=0
INSTALL=0
DEP_BIN=0
DEP_SRC=0
NODEPS=0
FORCE=0
PKGDEST=$startdir
BUILDSCRIPT="./PKGBUILD"

while [ "$#" -ne "0" ]; do
	case $1 in
		--clean)      CLEANUP=1    ;;
		--cleancache) CLEANCACHE=1 ;;
		--syncdeps)   DEP_BIN=1    ;;
		--builddeps)  DEP_SRC=1    ;;
		--nodeps)     NODEPS=1     ;;
		--install)    INSTALL=1    ;;
		--force)      FORCE=1      ;;
		--*)
			usage
			exit 1
			;;
		-*)
			while getopts "cCsbdifp:w:-" opt; do
				case $opt in
					c) CLEANUP=1 ;;
					C) CLEANCACHE=1 ;;
					s) DEP_BIN=1 ;;
					b) DEP_SRC=1 ;;
					d) NODEPS=1 ;;
					i) INSTALL=1 ;;
					f) FORCE=1 ;;
					w) PKGDEST=$OPTARG ;;
					p) BUILDSCRIPT=$OPTARG ;;
					-)
						OPTIND=0
						break
						;;
					*)
						usage
						exit 1
						;;
				esac
			done
			;;
		*)
			true
			;;
	esac
	shift
done

if [ "$CLEANCACHE" = "1" ]; then
	msg "==> Cleaning up source files from the cache"
	rm -rf /var/cache/pacman/src/*
	exit 0
fi

unset pkgname pkgver pkgrel pkgdesc url
unset depends conflicts backup source install build
umask 0022

if [ ! -f $BUILDSCRIPT ]; then
	msg "==> ERROR:  $BUILDSCRIPT does not exist."
	exit 1
fi

source $BUILDSCRIPT

# check for no-no's
if [ `echo $pkgver | grep '-'` ]; then
	msg "==> ERROR:  pkgver is not allowed to contain hyphens."
	exit 1
fi
if [ `echo $pkgrel | grep '-'` ]; then
	msg "==> ERROR:  pkgrel is not allowed to contain hyphens."
	exit 1
fi

if [ -f $PKGDEST/${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz -a "$FORCE" = "0" ]; then
	msg "==> ERROR:  a package has already been built.  (use -f to overwrite)"
	exit 1
fi

unset deplist
if [ `type -p pacman` -a "$NODEPS" = "0" ]; then
	msg "==> Checking Dependencies..."
	deplist=`checkdeps ${depends[@]}`
	if [ "$deplist" != "" ]; then
		if [ "$DEP_BIN" = "1" ]; then
			# install missing deps from binary packages (using pacman -S)
			msg "==> Installing missing dependencies..."
			pacman -D $deplist
			if [ "$?" = "127" ]; then
				msg "==> ERROR: Failed to install missing dependencies."
				exit 1
			fi
			# TODO: check deps again to make sure they were resolved
		elif [ "$DEP_SRC" = "1" ]; then
			# install missing deps by building them from source.
			# we look for each package name in $ABSROOT and build it.
			if [ "$ABSROOT" = "" ]; then
				msg "==> ERROR: The ABSROOT environment variable is not defined."
				exit 1
			fi
			# TODO: handle version comparators (eg, glibc>=2.2.5)
			msg "==> Building missing dependencies..."
			for dep in $deplist; do
				candidates=`find $ABSROOT -type d -name "$dep"`
				if [ "$candidates" = "" ]; then
					msg "==> ERROR: Could not find \"$dep\" under $ABSROOT"
					exit 1
				fi
				success=0
				for pkgdir in $candidates; do
					if [ -f $pkgdir/PKGBUILD ]; then
						cd $pkgdir
						echo makepkg -i -c -b -w $PKGDEST
						makepkg -i -c -b -w $PKGDEST
						if [ $? -eq 0 ]; then
							success=1
							break
						fi
					fi
				done
				if [ "$success" = "0" ]; then
					msg "==> ERROR: Failed to build \"$dep\""
					exit 1
				fi
			done
			# TODO: check deps again to make sure they were resolved
		else
			exit 1
		fi
	fi
elif [ "$NODEPS" = "1" ]; then
	msg "==> WARNING: skipping dependency checks."
else
	msg "==> WARNING: pacman was not found in PATH. skipping dependency checks."
fi

d=`date`
cd $startdir
msg "==> Making package $pkgname  ($d)"

# extract source
msg "==> Acquiring/Extracting Sources..."
mkdir -p src
cd $startdir/src
for netfile in ${source[@]}; do
	file=`strip_url $netfile`
	if [ -f ../$file ]; then
		msg "==> Found $file in build dir"
		cp ../$file .
	elif [ -f /var/cache/pacman/src/$file ]; then
		msg "==> Using local copy of $file"
		cp /var/cache/pacman/src/$file .
	else
		# check for a download utility
		if [ -z "$FTPAGENT" ]; then
			msg "==> ERROR:  FTPAGENT is not configured. Check the /etc/makepkg.conf file."
			msg "==> Aborting..."
			exit 1
		fi
		ftpclient=`echo $FTPAGENT | awk {'print $1'}`
		if [ ! -x $ftpclient ]; then
			msg "==> ERROR:  ftpclient `basename $ftpclient` is not installed."
			msg "==> Aborting..."
			exit 1
		fi
		proto=`echo $netfile | sed 's|://.*||'`
		if [ "$proto" != "ftp" -a "$proto" != "http" ]; then
			msg "==> ERROR:  $netfile was not found in the build directory and is not a proper URL."
			msg "==> Aborting..."
			exit 1
		fi
		msg "==> Downloading $file"
		$FTPAGENT $netfile 2>&1
		if [ ! -f $file ]; then
			msg "==> ERROR: Failed to download $file"
			msg "==> Aborting..."
			exit 1
		fi
		mkdir -p /var/cache/pacman/src && cp $file /var/cache/pacman/src
	fi
	unset cmd
	case $file in
		*.tar.gz|*.tar.Z|*.tgz)
			cmd="tar --use-compress-program=gzip -xf $file" ;;
		*.tar.bz2)
			cmd="tar --use-compress-program=bzip2 -xf $file" ;;
		*.tar)
			cmd="tar -xf $file" ;;
		*.zip)
			cmd="unzip -qq $file" ;;
		*.gz)
			cmd="gunzip $file" ;;
	esac
	if [ "$cmd" != "" ]; then
		msg "==> $cmd"
		$cmd
		if [ $? -ne 0 ]; then
			msg "==> ERROR:  Failed to extract $file"
			msg "==> Aborting..."
			exit 1
		fi
	fi
done

# check for existing pkg directory
if [ -d $startdir/pkg ]; then
	msg "==> Removing existing pkg directory..."
	rm -rf $startdir/pkg
fi
mkdir -p $startdir/pkg

# build
msg "==> Building Package..."
build 2>&1
if [ $? -gt 0 ]; then
	msg "==> Build Failed.  Aborting..."
	exit 2
fi

# remove info/doc files
cd $startdir
rm -rf pkg/usr/info pkg/usr/share/info
rm -rf pkg/usr/doc pkg/usr/share/doc

# move /usr/share/man files to /usr/man
if [ -d pkg/usr/share/man ]; then
	mkdir -p pkg/usr/man 
	cp -a pkg/usr/share/man/* pkg/usr/man/
	rm -rf pkg/usr/share/man
fi

# remove /usr/share directory if empty
if [ -d pkg/usr/share ]; then
	if [ -z "`ls -1 pkg/usr/share`" ]; then
		rm -r pkg/usr/share
	fi
fi

# compress man pages
if [ -d pkg/usr/man ]; then
	msg "==> Compressing man pages..."
	for i in `find pkg/usr/man -type f`; do
		ext=`echo $i | sed 's|.*\.||g'`
		fn=`echo $i | sed 's|.*/||g'`
		if [ "$ext" != "gz" ]; then
			# update symlinks to this manpage
			for ln in `find pkg/usr/man -lname "$fn"`; do
				rm -f $ln
				ln -sf ${fn}.gz ${ln}.gz
			done
			# compress the original
			gzip -9 $i
		fi
	done
fi

# strip binaries
cd $startdir
msg "==> Stripping debugging symbols from libraries..."
find pkg/{,usr,usr/local,opt/*}/lib -type f -exec /usr/bin/strip --strip-debug '{}' ';' 2>&1
msg "==> Stripping symbols from binaries..."
find pkg/{,usr,usr/local,opt/*}/{bin,sbin} -type f -exec /usr/bin/strip '{}' ';' 2>&1

# get some package meta info
builddate=`date -u "+%a %b %d %k:%M:%S %Y"`
if [ "$PACKAGER" != "" ]; then
	packager="$PACKAGER"
else
	packager="Arch Linux (http://www.archlinux.org)"
fi
size=`du -cb $startdir/pkg | tail -1 | awk '{print $1}'`

# write the .PKGINFO file
msg "==> Generating .PKGINFO file..."
cd $startdir/pkg
echo "# Generated by makepkg $myver" >.PKGINFO
echo -n "# " >>.PKGINFO
date >>.PKGINFO
echo "pkgname = $pkgname" >>.PKGINFO
echo "pkgver = $pkgver-$pkgrel" >>.PKGINFO
echo "pkgdesc = $pkgdesc" >>.PKGINFO
echo "url = $url" >>.PKGINFO
echo "builddate = $builddate" >>.PKGINFO
echo "packager = $packager" >>.PKGINFO
echo "size = $size" >>.PKGINFO

for depend in "${depends[@]}"; do
	echo "depend = $depend" >>.PKGINFO
done
for conflict in "${conflicts[@]}"; do
	echo "conflict = $conflict" >>.PKGINFO
done
for bakfile in "${backup[@]}"; do
	echo "backup = $bakfile" >>.PKGINFO
done

# check for an install script
if [ "$install" != "" ]; then
	msg "==> Copying install script..."
	cp $startdir/$install $startdir/pkg/.INSTALL
fi

# build a filelist
msg "==> Building filelist..."
cd $startdir/pkg
tar cv * >/dev/null 2>.FILELIST

# tar it up
msg "==> Compressing package..."
cd $startdir/pkg
if [ -f $startdir/pkg/.INSTALL ]; then
	cmd="tar czvf $PKGDEST/$pkgname-$pkgver-$pkgrel.pkg.tar.gz .PKGINFO .FILELIST .INSTALL *"
else
	cmd="tar czvf $PKGDEST/$pkgname-$pkgver-$pkgrel.pkg.tar.gz .PKGINFO .FILELIST *"
fi
$cmd >../filelist

cd $startdir
if [ "$CLEANUP" = "1" ]; then
	msg "==> Cleaning up"
	rm -rf src pkg filelist
fi

msg "==> Finished making $pkgname  (`date`)"

if [ "$INSTALL" = "1" ]; then
	msg "==> Running pacman --upgrade"
	pacman --upgrade $PKGDEST/$pkgname-$pkgver-$pkgrel.pkg.tar.gz
fi

exit 0