added grim
This commit is contained in:
parent
95a518736e
commit
0296395ce2
1 changed files with 31 additions and 0 deletions
31
pkgs/grim/build.sh
Normal file
31
pkgs/grim/build.sh
Normal file
|
@ -0,0 +1,31 @@
|
|||
pkgname=grim
|
||||
pkgver=1.3.2
|
||||
deps="wayland:cairo"
|
||||
|
||||
fetch() {
|
||||
curl -L "https://github.com/emersion/grim/releases/download/v$pkgver/grim-$pkgver.tar.gz" -o $pkgname-$pkgver.tar.gz
|
||||
tar -xf $pkgname-$pkgver.tar.gz
|
||||
mkdir $pkgname-$pkgver/build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
meson .. \
|
||||
--buildtype=release \
|
||||
--prefix=/usr \
|
||||
--libexecdir=lib
|
||||
samu
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
DESTDIR=$pkgdir samu install
|
||||
}
|
||||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE
|
||||
# cat COPYING
|
||||
}
|
Loading…
Reference in a new issue