diff options
author | Pellegrino Prevete | 2021-08-14 23:06:18 +0200 |
---|---|---|
committer | Pellegrino Prevete | 2021-08-14 23:06:18 +0200 |
commit | 031ac5803ef03bbe0251b1eeabe99be6ae98e4f0 (patch) | |
tree | 7679be6ef1c963c00b6d6d0a3e6a69136b239013 /PKGBUILD | |
download | aur-031ac5803ef03bbe0251b1eeabe99be6ae98e4f0.tar.gz |
initial commit
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..01efe71908c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Pellegrino Prevete <cGVsbGVncmlub3ByZXZldGVAZ21haWwuY29tCg== | base -d> +# Contributor: Nikita Ukhrenkov <thekit@disroot.org> +# Contributor: Bart Ribbers <bribbers@disroot.org> + +pkgname=statusbar-alarm-dbus +_pkgname=$pkgname-api +pkgver=0.5.11 +pkgrel=1 +pkgdesc="Plugin showing current time and alarm set" +url="https://github.com/maemo-leste/$_pkgname" +arch=(any) +license=(LGPL) +makedepends=(autoconf automake libtool) +checkdepends=() +groups=(maemo) +source=("git+$url.git#tag=$pkgver") +sha256sums=('SKIP') + +prepare() { + cd $_pkgname + ./autogen.sh +} + +build() { + cd $_pkgname + ./configure --prefix=/usr + make + } + +package() { + cd $_pkgname + DESTDIR="$pkgdir" make install + libtool --finish /usr/lib +} |