crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (439B)


      1 # Description:	lightweight XMPP client library written in C
      2 # URL:		https://github.com/strophe/libstrope
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:	expat openssl
      5 
      6 name=libstrophe
      7 version=0.11.0
      8 release=1
      9 source=(https://github.com/strophe/$name/releases/download/$version/$name-$version.tar.xz)
     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 }