crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (511B)


      1 # Description:	text mode web browser
      2 # URL:		http://links.twibright.com/
      3 # Maintainer:	Shokara Kou, shokara at kalli dot st
      4 # Depends on:	bzip2 xz zlib zstd libevent
      5 
      6 name=xlinks
      7 version=2.26
      8 release=1
      9 source=(http://links.twibright.com/download/links-$version.tar.bz2
     10 	0001-disable-automatic-tor.patch)
     11 
     12 build() {
     13 	cd links-$version
     14 
     15 	patch < ../0001-disable-automatic-tor.patch
     16 
     17 	./configure \
     18 		--prefix=/usr \
     19 		--mandir=/usr/share/man \
     20 		--enable-graphics \
     21 		--with-x
     22 
     23 	make
     24 	make DESTDIR=$PKG install
     25 }