correct PKGBUILD

This commit is contained in:
Cedric Girard 2016-05-30 11:56:50 +02:00
parent 08fc22d392
commit e418b714fc
2 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,5 @@
# Generated by mksrcinfo v8
# Mon May 30 09:54:39 UTC 2016
pkgbase = mmv pkgbase = mmv
pkgdesc = multiple move files pkgdesc = multiple move files
pkgver = 1.01b.orig pkgver = 1.01b.orig

View file

@ -1,5 +1,5 @@
# Maintainer: blue_lizard lizard@blue.dyn-o-saur.com # Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Contributor: Cedric Girard <girard.cedric@gmail.com> # Contributor: blue_lizard lizard@blue.dyn-o-saur.com
pkgname=mmv pkgname=mmv
pkgver=1.01b.orig pkgver=1.01b.orig
@ -9,15 +9,19 @@ source=(http://ftp.de.debian.org/debian/pool/main/m/mmv/mmv_1.01b.orig.tar.gz ht
md5sums=('1b2135ab2f17bdfa9e08debbb3c46ad8' '991e5c7ef7b78a05aba1b81c36c6288c') md5sums=('1b2135ab2f17bdfa9e08debbb3c46ad8' '991e5c7ef7b78a05aba1b81c36c6288c')
url="http://linux.maruhn.com/sec/mmv.html" url="http://linux.maruhn.com/sec/mmv.html"
license="GPL" license=('GPL')
install=$pkgname.install install=$pkgname.install
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
build() { prepare() {
cd "${srcdir}/$pkgname-$pkgver" cd "${srcdir}/$pkgname-$pkgver"
patch -p1 < ../mmv_1.01b-15.diff patch -p1 < ../mmv_1.01b-15.diff
sed -i -e "s/LDFLAGS.\s=-s -N/LDFLAGS =-s/g" Makefile sed -i -e "s/LDFLAGS.\s=-s -N/LDFLAGS =-s/g" Makefile
sed -i 's!/usr/man!/usr/share/man!' Makefile sed -i 's!/usr/man!/usr/share/man!' Makefile
}
build() {
cd "${srcdir}/$pkgname-$pkgver"
make make
} }