crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (389B)


      1 # Description:	library for UUID
      2 # URL:		https://sourceforge.net/projects/libuuid/files/
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:
      5 
      6 name=libuuid
      7 version=1.0.3
      8 release=1
      9 source=(https://sourceforge.net/projects/$name/files/$name-$version.tar.gz)
     10 
     11 build() {
     12 	cd $name-$version
     13 
     14 	./configure \
     15 		--prefix=/usr
     16 
     17 	make
     18 	make DESTDIR=$PKG install
     19 
     20 	rm -fr $PKG/usr/share/doc
     21 }