Pkgfile 556 B

1234567891011121314151617181920212223
  1. # Description: MS Word document import library
  2. # URL: http://abisource.com/
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: libgsf
  5. # originally found at Petar Petrov's Github repo crux-ports
  6. name=wv
  7. version=1.2.9
  8. release=3
  9. source=(https://slackware.uk/sbosrcarch/by-name/libraries/$name/$name-$version.tar.gz)
  10. build() {
  11. cd $name-$version
  12. export PKG_CONFIG_PATH="/usr/lib/libxml210/pkgconfig:$PKG_CONFIG_PATH"
  13. ./configure --prefix=/usr \
  14. --enable-static=no
  15. make
  16. make install DESTDIR=$PKG
  17. rm -f $PKG/{,usr/}lib/*.la
  18. }