diff options
author | François Grabenstaetter | 2019-12-22 18:14:44 +0100 |
---|---|---|
committer | François Grabenstaetter | 2019-12-22 18:14:44 +0100 |
commit | 23089200d0e2479f206a67d5cd62cbda3c564c19 (patch) | |
tree | 326f93242d5dd49795171208ba7191f569c83817 /PKGBUILD | |
download | aur-digital-assets.tar.gz |
Initial PKGBUILD
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..8dd7840a059 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: François Grabenstaetter <francoisgrabenstaetter@gmail.com> + +pkgname=digital-assets +pkgver=1.1.1 +pkgrel=1 +pkgdesc="Cryptocurrencies prices and statistics" +arch=('any') +url="https://gitlab.gnome.org/fgrabenstaetter/digital-assets" +license=('GPL3') + +depends=( + 'python>=3.7' + 'glib2' + 'gtk3>=3.20' + 'gobject-introspection>=1.56' + 'python-cairo' +) +makedepends=( + 'git' + 'meson>=0.50' +) +source=('git+https://gitlab.gnome.org/fgrabenstaetter/digital-assets.git#tag=7a70f071caa3ac45c82f596f5f1a73ffd67c43ca') +sha256sums=('SKIP') + +build() { + cd $pkgname + meson build --prefix=/usr + ninja -C build +} + +package() { + cd $pkgname + DESTDIR="$pkgdir" ninja -C build install +} |