diff options
Diffstat (limited to 'libgnt3-hg')
-rw-r--r-- | libgnt3-hg/.SRCINFO | 21 | ||||
-rw-r--r-- | libgnt3-hg/.gitignore | 1 | ||||
-rw-r--r-- | libgnt3-hg/PKGBUILD | 34 |
3 files changed, 56 insertions, 0 deletions
diff --git a/libgnt3-hg/.SRCINFO b/libgnt3-hg/.SRCINFO new file mode 100644 index 0000000..c532ba4 --- /dev/null +++ b/libgnt3-hg/.SRCINFO @@ -0,0 +1,21 @@ +pkgbase = libgnt3-hg + pkgdesc = ncurses widgets for Pidgin + pkgver = r1454.86d548109b38 + pkgrel = 1 + url = https://bitbucket.org/pidgin/libgnt + arch = i686 + arch = x86_64 + license = GPL2 + makedepends = mercurial + makedepends = meson + makedepends = gtk-doc + makedepends = gi-docgen + depends = ncurses>=6.1 + depends = glib2>=2.58.0 + depends = icu>=63.1 + depends = libxml2>=2.9.8 + depends = python>=3.7.0 + source = libgnt3-hg::hg+https://keep.imfreedom.org/libgnt/libgnt + sha256sums = SKIP + +pkgname = libgnt3-hg diff --git a/libgnt3-hg/.gitignore b/libgnt3-hg/.gitignore new file mode 100644 index 0000000..67c973b --- /dev/null +++ b/libgnt3-hg/.gitignore @@ -0,0 +1 @@ +libgnt-hg diff --git a/libgnt3-hg/PKGBUILD b/libgnt3-hg/PKGBUILD new file mode 100644 index 0000000..06c9de8 --- /dev/null +++ b/libgnt3-hg/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Deposite Pirate <dpirate at metalpunks dot info> +# +# Upstream: https://git.metalpunks.info/arch-ports + +_pkgname=libgnt +pkgname=${_pkgname}3-hg +pkgver=r1454.86d548109b38 +pkgrel=1 +pkgdesc="ncurses widgets for Pidgin" +arch=('i686' 'x86_64') +url="https://bitbucket.org/pidgin/libgnt" +license=('GPL2') +depends=('ncurses>=6.1' 'glib2>=2.58.0' 'icu>=63.1' 'libxml2>=2.9.8' 'python>=3.7.0') +makedepends=('mercurial' 'meson' 'gtk-doc' 'gi-docgen') +source=("$pkgname::hg+https://keep.imfreedom.org/$_pkgname/$_pkgname") +sha256sums=('SKIP') + +pkgver() { + cd "${pkgname}" + printf "r%s.%s" \ + "$(hg identify -n)" \ + "$(hg identify -i)" +} + +build() { + cd "${pkgname}" + arch-meson build + ninja -C build +} + +package() { + cd "${pkgname}" + DESTDIR="${pkgdir}" ninja -C build install +} |