opt/pkgsync/Pkgfile

29 lines
707 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Distributed package management for CRUX linux
# Maintainer: Jay Dolan, jdolan at jdolan dot dyndns dot org
2006-10-07 17:34:54 +02:00
# URL: http://jaydolan.com/pkgsync.html
2006-02-23 16:26:10 +01:00
# Depends on:
name=pkgsync
version=1.4
release=1
source=(http://jdolan.dyndns.org/jaydolan/files/$name-$version.tar.bz2)
build(){
cd $name-$version
install -m 755 -d $PKG/etc
install -m 644 pkgsync.conf $PKG/etc
install -m 644 pkgdeploy.conf $PKG/etc
install -m 755 -d $PKG/usr/bin
install -m 755 pkgsync $PKG/usr/bin
install -m 755 pkgdeploy $PKG/usr/bin
install -m 755 -d $PKG/usr/man/man8
install -m 644 pkgsync.8 $PKG/usr/man/man8
install -m 644 pkgdeploy.8 $PKG/usr/man/man8
install -m 755 -d $PKG/usr/packages/old
}