diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-07 11:25:20 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-07 11:25:20 -0300 |
commit | ea72eac0bc0d1abf4f6008383a8cf96bff0476da (patch) | |
tree | c6d9bfd076e21295939291fbf187f33d49de5538 /community/dwdiff | |
parent | 6ba17fd7084afd34f49d65a2d214a0c9617b4cd4 (diff) | |
parent | 93a9cde1226d0c82849bc71ff4d481d3d2698dc1 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/avidemux/PKGBUILD
extra/kdesdk/PKGBUILD
extra/swh-plugins/PKGBUILD
kde-unstable/kdesdk/PKGBUILD
multilib/nspluginwrapper/PKGBUILD
Diffstat (limited to 'community/dwdiff')
-rw-r--r-- | community/dwdiff/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/community/dwdiff/PKGBUILD b/community/dwdiff/PKGBUILD index 78a27c3f2..be3c974d1 100644 --- a/community/dwdiff/PKGBUILD +++ b/community/dwdiff/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 40270 2011-02-22 18:14:28Z spupykin $ +# $Id: PKGBUILD 48640 2011-06-03 16:55:04Z stephane $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=dwdiff pkgver=1.9 -pkgrel=1 +pkgrel=2 pkgdesc="a front-end for the diff program that operates at the word level instead of the line level" arch=('i686' 'x86_64' 'mips64el') url="http://os.ghalkes.nl/dwdiff.html" @@ -13,8 +13,12 @@ source=(http://os.ghalkes.nl/dist/$pkgname-$pkgver.tgz) md5sums=('f483d8d8dab7a972ef21d5096e07fd47') build() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make - make prefix=$pkgdir/usr install +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make prefix="$pkgdir"/usr install } |