summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 571da8bda27b7f733429847c4b732630003a6421 (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
# Wiesław Magusiak <w.magusiak@gmail.com>
pkgname=arch-headless
pkgver=1.11
pkgrel=0
pkgdesc="Modify your arch ISO for a headless (and keyboardless) computer."
arch=('i686' 'x86_64')
url="http://github.com/wiemag/arch-headless"
license=('GPL')
groups=()
depends=('squashfs-tools' 'cdrkit' 'coreutils' 'grep' 'which' 'kbd' 'gawk' 'sed' 'util-linux')
#squashfs-tools: unsquashfs, mksquashfs
#cdrkit: 		 genisoimage
#coreutils: 	 md5sum, echo, date
#grep: 			 grep
#which: 		 which
#kbd:            loadkeys, setfont
#gawk:           awk
#sed:            sed
#util-linux:     mount, umount
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(https://github.com/wiemag/arch-headless/archive/v${pkgver}.tar.gz)
noextract=()
md5sums=('35dd01464e3e8978bbd43dd2fa9e7d2e')
package() {
	cd "${srcdir}/${pkgname}-${pkgver}/"
	install -d -m 755 ${pkgdir}/usr/bin
	install -m 755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
	install -d -m 755 ${pkgdir}/usr/share/man/man1
	install -D -m 644 ${pkgname}.man ${pkgdir}/usr/share/man/man1/${pkgname}.1
}