crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (475B)


      1 # Description:	A ratcheting forward secrecy protocol
      2 # URL:		https://github.com/signalapp/libsignal-protocol-c
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:	cmake
      5 
      6 name=libsignal-protocol-c
      7 version=2.3.3
      8 release=1
      9 source=(https://github.com/signalapp/$name/archive/refs/tags/v$version.tar.gz)
     10 
     11 build() {
     12 	cd $name-$version
     13 
     14 	cmake . \
     15 		-DCMAKE_INSTALL_PREFIX=/usr \
     16 		-DCMAKE_BUILD_TYPE=Release
     17 
     18 	make
     19 	make DESTDIR=$PKG install
     20 
     21 	rm -fr $PKG/usr/share/doc
     22 }