spmenu/PKGBUILD

61 lines
976 B
Bash
Raw Normal View History

# Maintainer: speedie <speedie@speedie.site>
2023-02-26 22:47:22 +01:00
pkgname=spmenu
pkgver=VERSION
2023-02-26 22:47:22 +01:00
pkgrel=1
pkgdesc="Fancy dynamic menu for X11 and Wayland, compatible with dmenu!"
url="https://spmenu.speedie.site"
2023-02-26 22:47:22 +01:00
arch=(i686 x86_64)
license=(MIT)
depends=(
2023-06-03 17:05:38 +02:00
bash
libxinerama
cairo
pango
wayland
wayland-protocols
libxkbcommon
libx11
imlib2
fribidi
libconfig
)
makedepends=(
git
meson
ninja
)
2023-02-26 22:47:22 +01:00
provides=($pkgname)
conflicts=($pkgname)
source=(
2023-03-01 13:20:53 +01:00
"$pkgname-$pkgver.tar.gz"
2023-05-21 14:48:36 +02:00
"$pkgname-$pkgver.tar.gz.sig"
#"https://ls.speedie.site/releases/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz"
#"https://ls.speedie.site/releases/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz.sig"
2023-02-26 22:47:22 +01:00
)
md5sums=(
MD5SUM
'SKIP'
)
2023-02-26 22:47:22 +01:00
2023-07-19 03:48:24 +02:00
sha256sums=(
SHA256SUM
'SKIP'
)
2023-02-26 22:47:22 +01:00
build(){
cd $pkgname-$pkgver
2023-05-08 11:39:34 +02:00
mkdir -p build/
2023-05-19 15:59:42 +02:00
meson setup --reconfigure --prefix=${pkgdir}/usr build
2023-05-08 11:39:34 +02:00
ninja -C build
2023-02-26 22:47:22 +01:00
}
package() {
cd "$pkgname-$pkgver"
2023-05-08 11:39:34 +02:00
2023-05-19 15:59:42 +02:00
meson install -C build
2023-02-26 22:47:22 +01:00
}