summaryrefslogtreecommitdiffstats
path: root/ports/Pkgfile
blob: 917a20eb7c2cffbad80297ae65552a9ab6aa32d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description="CRUX ports system tools."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://crux.nu"
depends=()

# FIXME: These ports files are for Crux’s repositories… not ours.
# FIXME: We should use git/httpup instead of rsync, for these files…

name=ports
version=1.5
release=10
source=(http://crux.nu/files/tools/$name/$name-$version.tar.gz core.rsync opt.rsync xorg.rsync contrib.rsync.inactive)
build () 
{ 
	cd $name-$version;
	make;
	make DESTDIR=$PKG install;
	install -m 0644 ../core.rsync $PKG/etc/ports/core.rsync;
	install -m 0644 ../opt.rsync $PKG/etc/ports/opt.rsync;
	install -m 0644 ../xorg.rsync $PKG/etc/ports/xorg.rsync;
	install -m 0644 ../contrib.rsync.inactive $PKG/etc/ports/contrib.rsync.inactive
}