diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-22 11:26:53 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-22 11:26:53 +0100 |
commit | 50a468d0a3c5555c9e6889696bd0397f17a6974c (patch) | |
tree | 8d8b7bc211e7e2b5a91c25c86c5b7ae58e9e4a52 /community/cksfv | |
parent | bf6c93db356044781e343fe26da74d357b4beda3 (diff) | |
parent | 6b3123e5628817e3cef9c44989dffd21c49b0817 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/cksfv/PKGBUILD
extra/clutter-gtk2/PKGBUILD
extra/gnuplot/PKGBUILD
extra/mx/PKGBUILD
Diffstat (limited to 'community/cksfv')
-rw-r--r-- | community/cksfv/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/community/cksfv/PKGBUILD b/community/cksfv/PKGBUILD index 214e52a44..90f7bf4e7 100644 --- a/community/cksfv/PKGBUILD +++ b/community/cksfv/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 57202 2011-10-23 23:26:43Z andrea $ +# $Id: PKGBUILD 86750 2013-03-21 21:05:54Z eric $ # Maintainer: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> # Contributor: Wijnand Modderman <wijanand+aur@archlinux.nl> @@ -7,20 +7,20 @@ pkgver=1.3.14 pkgrel=2.1 pkgdesc="SFV (Simple File Verification) Checker" arch=('i686' 'x86_64' 'mips64el') -url="http://zakalwe.virtuaalipalvelin.net/~shd/foss/cksfv/" +url="http://zakalwe.fi/~shd/foss/cksfv" license=('GPL') depends=('glibc') source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz) md5sums=('2e15289753ea0b90b6ea86993f93b383') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --package-prefix=$pkgdir + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr make } package() { - cd $srcdir/$pkgname-$pkgver - make install - chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1 + cd "$srcdir/$pkgname-$pkgver" + make BINDIR="$pkgdir/usr/bin" MANDIR="$pkgdir/usr/share/man" install + chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1" } |