mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 07:44:38 +08:00
30 lines
844 B
Bash
30 lines
844 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.4
|
||
|
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')
|
||
|
options=('!libtool')
|
||
|
source=("http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
||
|
md5sums=('1e83ec8b3ed3159d0c883c056b153429')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --localstatedir=/var
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
rm -rf $pkgdir/var
|
||
|
}
|