diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-03 19:44:19 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-03 19:44:19 -0300 |
commit | 5f03f36a1327a1c1ade065b89ec2ad873b708a0d (patch) | |
tree | 0bbfab5010c0318a1faa46d5897fd831e0e4d60c /community/enter/PKGBUILD | |
parent | 1ac43f3f1d47a56bbc1564ae7d2fd0869f345b6c (diff) | |
parent | 8eed59114cbcf729b65f87d3f73530f6c8363d20 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/libdvdnav/PKGBUILD
extra/libguess/PKGBUILD
extra/libmowgli/PKGBUILD
extra/xchm/PKGBUILD
libre/linux-libre/PKGBUILD
Diffstat (limited to 'community/enter/PKGBUILD')
-rw-r--r-- | community/enter/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/community/enter/PKGBUILD b/community/enter/PKGBUILD index 49b07c5f4..e74da4ff0 100644 --- a/community/enter/PKGBUILD +++ b/community/enter/PKGBUILD @@ -1,9 +1,10 @@ -# $Id: PKGBUILD 7949 2010-01-12 22:33:43Z dgriffiths $ +# $Id: PKGBUILD 59871 2011-12-01 13:33:05Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Vesa Kaihlavirta <vegai@iki.fi> -pkgname=enter +pkgname=enter pkgver=0.0.9 -pkgrel=2 +pkgrel=3 pkgdesc="Enter is a lightweight graphical login manager for X." arch=('i686' 'x86_64' 'mips64el') url="http://enter.sf.net" @@ -11,12 +12,12 @@ license=('GPL') depends=('libxft' 'imlib2' 'xorg-server') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('47a77ae57e667f887f856c0a126d667a') -sha1sums=('f41c31229914bd22722f5d9e6aefacf65e8c41c2') - build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver + sed -i 's|\[xft-config\]|\[pkg-config\]|' configure.ac + autoreconf ./configure --prefix=/usr --sysconfdir=/etc CFLAGS="$CFLAGS -lcrypt" - make || return 1 - make DESTDIR=$startdir/pkg install || return 1 + make + make DESTDIR=$pkgdir install } |