st/PKGBUILD

32 lines
679 B
Bash
Raw Permalink Normal View History

2023-02-27 18:15:58 +01:00
# Maintainer: speedie <speedie.alt@gmail.com>
pkgname=st-spde
2023-08-28 11:31:16 +02:00
pkgver=1.3
2023-02-27 18:15:58 +01:00
pkgrel=1
pkgdesc="speedie's fork of st with .Xresources, pywal, alpha, and more."
2023-07-27 22:38:14 +02:00
url="https://git.speedie.site/speedie/st"
2023-02-27 18:15:58 +01:00
arch=(i686 x86_64)
license=(MIT)
2023-07-27 22:38:14 +02:00
depends=(sh libxft libx11 gd harfbuzz)
2023-02-27 18:15:58 +01:00
makedepends=()
provides=($pkgname)
conflicts=($pkgname)
source=(
2023-07-27 22:38:14 +02:00
"https://ls.speedie.site/releases/$pkgname/$pkgname-$pkgver.tar.gz"
2023-02-27 18:15:58 +01:00
)
md5sums=('SKIP')
build(){
cd $pkgname-$pkgver
make \
X11INC=/usr/include/X11 \
2023-07-27 22:38:14 +02:00
X11LIB=/usr/lib/X11
2023-02-27 18:15:58 +01:00
}
package() {
cd "$pkgname-$pkgver"
2023-07-27 22:38:14 +02:00
make PREFIX=/usr DESTDIR="$pkgdir" install
2023-02-27 18:15:58 +01:00
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}