crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (484B)


      1 # Description:	Portable fork of OpenBSD's doas command
      2 # URL:		https://github.com/Duncaen/OpenDoas/
      3 # Maintainer:	Shokara Kou, shokara at kalli dot st
      4 # Depends on:	bzip2 xz zlib zstd libevent
      5 
      6 name=doas
      7 version=6.8.2
      8 release=1
      9 source=(https://github.com/Duncaen/OpenDoas/releases/download/v$version/opendoas-$version.tar.xz)
     10 
     11 build() {
     12 	cd opendoas-$version
     13 
     14 	./configure \
     15 		--prefix=/usr \
     16 		--without-pam \
     17 		--with-shadow \
     18 		--with-timestamp
     19 
     20 	make
     21 	make DESTDIR=$PKG install
     22 }