initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

34
scrot/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
# Maintainter: Tobias Dausend <throgh@hyperbola.info>
pkgname=scrot
pkgver=1.8.1
pkgrel=1
pkgdesc="Simple command-line screenshot utility for X"
url='https://github.com/resurrecting-open-source-projects/scrot'
arch=('i686' 'x86_64')
license=('Expat')
depends=('imlib2' 'libxext' 'libxinerama' 'libxfixes' 'libxcomposite' 'libbsd')
makedepends=('autoconf-archive')
source=("https://github.com/resurrecting-open-source-projects/scrot/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('9ab283c9554030250bc7f36885f1eb1ec52d3400e8e7d42b64abc2abaefc5c5073b84eaa9909ce843b5c5f0fd4e879e7f93e9ddc95d78b263abdf5d80ffb4d0d')
prepare(){
cd $pkgname-$pkgver
autoreconf -fiv
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
install -Dm 644 README.md ChangeLog -t "${pkgdir}"/usr/share/doc/${pkgname}
install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
}