summaryrefslogtreecommitdiffstats
path: root/base/pkgutils/Pkgfile
blob: 7dd02602f6c35347975e56131b4be15eb4d472f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Description: A set of utilities to manage software packages 
# URL:         http://www.fukt.bsnet.se/~per/pkgutils/
# Maintainer:  NuTyX core team
# Packager: thierryn1 at hispeed dot ch

name=pkgutils
version=5.35.0
release=1
source=(http://crux.nu/files/$name-$version.tar.gz \
nutyx-attapu.1.patch)
build () {
cd $name-$version
mkdir -p $PKG/usr/share
patch -Np1 -i ../nutyx-attapu.1.patch
make DESTDIR=$PKG install
case `uname -m` in
	x86_64)
		sed -i "s/march=native/mtune=generic/" $PKG/etc/pkgmk.conf;;
	i?86)
		sed -i "s/native/i686/" $PKG/etc/pkgmk.conf;;
esac
	mv $PKG/usr/man	\
	$PKG/usr/share/man
}