diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-13 16:32:10 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-13 16:32:10 -0300 |
commit | e72fd71390e9dec26bc6cd9e5599673e6f9ac647 (patch) | |
tree | eb882c08f40af13af726420d4c24813bb03eff15 /libre | |
parent | 2f7a15da446c648ba35df4013d867df0cd5a2300 (diff) | |
download | abslibre-e72fd71390e9dec26bc6cd9e5599673e6f9ac647.tar.gz abslibre-e72fd71390e9dec26bc6cd9e5599673e6f9ac647.tar.bz2 abslibre-e72fd71390e9dec26bc6cd9e5599673e6f9ac647.zip |
aif-libre-2011.02.13-1
Diffstat (limited to 'libre')
-rw-r--r-- | libre/aif-libre/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libre/aif-libre/PKGBUILD b/libre/aif-libre/PKGBUILD new file mode 100644 index 000000000..82809afdf --- /dev/null +++ b/libre/aif-libre/PKGBUILD @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Dieter Plaetinck <dieter@plaetinck.be> + +pkgname=aif-libre +pkgver=2011.02.13 +pkgrel=1 +pkgdesc="The ArchLinux Installation Framework (Parabola Rebranded)" +arch=('any') +url="http://projects.parabolagnulinux.org/aif.git/" +license=('GPL3') +depends=('util-linux-ng' 'bash' 'pacman' 'coreutils' 'grub' 'grep' 'mkinitcpio' 'awk' 'sed' 'libui-sh') +optdepends=('cryptsetup: for encryption support' + 'lvm2: for LVM support' + 'dhcpd: for dhcp networking support' + 'e2fsprogs: Ext support' + 'jfsutils: JFS support' + 'reiserfsprogs: ReiserFS support' + 'xfsprogs: XFS support' + 'ntp: setting date with NTP' + 'dialog: for ncurses support' + ) +replaces=('aif') +conflicts=('aif') +provides=('aif') +source=(http://projects.parabolagnulinux.org/aif.git/snapshot/aif-${pkgver}-parabola.tar.bz2) +md5sums=('8727035c4bbadd24275aa3a27db88643') + +build() { + + cd $srcdir/aif-$pkgver-parabola/ + + make DESTDIR="$pkgdir/" install + +} + +# vim:set ts=2 sw=2 et: + |