Date: Thursday, August 19, 2021 @ 07:27:00 Author: felixonmars Revision: 1003759
addpkg: cutefish-screenlocker 0.4-1 Added: cutefish-screenlocker/ cutefish-screenlocker/repos/ cutefish-screenlocker/trunk/ cutefish-screenlocker/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: cutefish-screenlocker/trunk/PKGBUILD =================================================================== --- cutefish-screenlocker/trunk/PKGBUILD (rev 0) +++ cutefish-screenlocker/trunk/PKGBUILD 2021-08-19 07:27:00 UTC (rev 1003759) @@ -0,0 +1,26 @@ +# Maintainer: Felix Yan <[email protected]> + +pkgname=cutefish-screenlocker +pkgver=0.4 +pkgrel=1 +pkgdesc="CutefishOS system screen locker" +arch=('x86_64') +url="https://github.com/cutefishos/screenlocker" +license=('GPL') +groups=('cutefish') +depends=('fishui' 'libcutefish') +makedepends=('extra-cmake-modules' 'qt5-tools') +source=("https://github.com/cutefishos/screenlocker/archive/$pkgver/$pkgname-$pkgver.tar.gz") +sha512sums=('a1504a073f7d6e1e279710a2639d74765663b224f8e76f2c8e2f3e0137695bcd25b29d07c8d890932047d982c7157529afe31adad654b6149406587069eec5b8') + +build() { + cd screenlocker-$pkgver + + cmake -DCMAKE_INSTALL_PREFIX=/usr . + make +} + +package() { + cd screenlocker-$pkgver + make DESTDIR="$pkgdir" install +}
