crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (488B)


      1 # Description:	a suite of tools compiling mdoc and man
      2 # URL:		https://mandoc.bsd.lv/
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:	
      5 
      6 name=mandoc
      7 version=1.14.6
      8 release=1
      9 source=(https://mandoc.bsd.lv/snapshots/$name-$version.tar.gz)
     10 
     11 build() {
     12 	cd $name-$version
     13 
     14 	sed -e 's,^PREFIX="/usr/local",PREFIX=/usr,g' \
     15 	    -e 's,^MANDIR=.*,MANDIR=${PREFIX}/share/man,' configure >tmp
     16 	mv tmp configure
     17 	chmod +x configure
     18 
     19 	./configure
     20 	make PREFIX=/usr DESTDIR=$PKG install
     21 }