Pkgfile 536 B

123456789101112131415161718
  1. # Description: Command line screen capture utility.
  2. # URL: https://github.com/ressurecting-open-source-projects/scrot
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: autoconf autoconf-archive pkgconf imlib2 libbsd xorg-libxinerama xorg-libxcomposite
  5. name=scrot
  6. version=1.10
  7. release=1
  8. source=(https://github.com/resurrecting-open-source-projects/scrot/releases/download/$version/$name-$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./autogen.sh
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. }