core/prt-get/Pkgfile

22 lines
526 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A utility to simplify ports searching/installing
2021-12-13 11:55:55 +01:00
# URL: https://crux.nu/gitweb/?p=tools/prt-get.git;a=summary
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=prt-get
2022-05-07 14:16:30 +02:00
version=5.19.6
release=1
2017-01-21 12:28:29 +01:00
source=(http://crux.nu/files/prt-get-$version.tar.xz
2021-12-13 11:55:55 +01:00
prt-get.conf prt-get.aliases)
2006-02-23 16:26:10 +01:00
build() {
2021-12-13 11:55:55 +01:00
cd ${name}-${version}
2006-09-13 19:51:50 +02:00
2021-12-13 11:55:55 +01:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2021-12-13 11:55:55 +01:00
install -m 644 $SRC/prt-get.{conf,aliases} $PKG/etc/
2022-05-07 14:16:30 +02:00
install -d $PKG/var/lib/pkg
touch $PKG/var/lib/pkg/prt-get.locker
2006-02-23 16:26:10 +01:00
}