crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (600B)


      1 # Description:	ncurses based XMPP client
      2 # URL:		https://profanity-im.github.io/
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:	libstrophe ncurses glib curl readline sqlite3 libotr libgcrypt libsignal-protocol-c
      5 
      6 name=profanity
      7 version=0.12.1
      8 release=1
      9 source=(https://github.com/profanity-im/$name/releases/download/$version/$name-$version.tar.xz)
     10 
     11 build() {
     12 	cd $name-$version
     13 
     14 	./configure \
     15 		--prefix=/usr \
     16 		--disable-python-plugins \
     17 		--disable-c-plugins \
     18 		--disable-plugins \
     19 		--enable-otr \
     20 		--enable-omemo
     21 
     22 	make
     23 	make DESTDIR=$PKG install
     24 
     25 	rm -fr $PKG/usr/share/doc
     26 }