crux-musl

Unnamed repository; edit this file 'description' to name the repository.
git clone https://codeberg.org/emmett1/crux-musl
Log | Files | Refs | README | LICENSE

Pkgfile (491B)


      1 # Description: text mode web browser
      2 # URL: http://links.twibright.com/
      3 # Maintainer: Emmett1, emmett1 dot 2miligrams at protonmail dot com
      4 # Depends on: bzip2 libevent zstd
      5 
      6 name=links
      7 version=2.30
      8 release=1
      9 source=(http://links.twibright.com/download/links-$version.tar.bz2)
     10 
     11 build() {
     12     cd $name-$version
     13 
     14     CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration" \
     15     ./configure \
     16         --prefix=/usr \
     17         --mandir=/usr/share/man
     18 
     19     make
     20     make DESTDIR=$PKG install
     21 }