mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 03:44:36 +08:00
29 lines
823 B
Bash
29 lines
823 B
Bash
# Neoophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/libinfinity
|
|
|
|
pkgname=libinfinity
|
|
pkgver=0.5.5
|
|
pkgrel=1
|
|
pkgdesc="An implementation of the Infininote protocol written in GObject-based C"
|
|
arch=('x86_64')
|
|
url="http://gobby.0x539.de"
|
|
license=('GPL')
|
|
depends=('gnutls' 'libgsasl' 'glib2' 'libxml2')
|
|
makedepends=('pkgconfig')
|
|
optdepends=('avahi: zeroconf support'
|
|
'gtk2: gtk support')
|
|
source=("http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('93a0cd2b73c9298aa77ee37503d2bc5f')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
rm -rf $pkgdir/var
|
|
}
|