mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 06:37:15 +08:00
31 lines
783 B
Bash
31 lines
783 B
Bash
pkgname=gnet
|
|
pkgver=2.0.8
|
|
pkgrel=3
|
|
pkgdesc="GNet is a simple network library. It is written in C, object-oriented, and built upon GLib."
|
|
arch=('x86_64')
|
|
url="https://live.gnome.org/GNetLibrary"
|
|
license=('LGPL')
|
|
depends=('glib2')
|
|
install=install
|
|
source=("http://ftp.gnome.org/pub/GNOME/sources/gnet/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('93327d2fca333d7e54ba2cf54e071165')
|
|
sha1sums=('74a33dd25cc594b874e3a5171795efd99e567387')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-gtk-doc \
|
|
CFLAGS="$(pkg-config --cflags glib-2.0)" \
|
|
LIBS="$(pkg-config --libs glib-2.0)" \
|
|
|| return 1
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make install DESTDIR="${pkgdir}"
|
|
}
|