17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
|
# Description: rpcsvc proto.x files from glibc
|
||
|
# URL: https://github.com/thkukuk/rpcsvc-proto
|
||
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
||
|
|
||
|
name=rpcsvc-proto
|
||
|
version=1.4.2
|
||
|
release=1
|
||
|
source=(https://github.com/thkukuk/$name/releases/download/v$version/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
autoreconf -fi
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|