libverto 0.3.2-1

This commit is contained in:
xhaa123 2024-11-04 18:30:17 +08:00
commit cb9739b73d

34
PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=libverto
pkgver=0.3.2
pkgrel=1
pkgdesc="Main event loop abstraction library"
arch=('x86_64')
url="https://github.com/latchset/libverto"
license=('MIT')
depends=('glibc' 'libevent')
source=(https://github.com/latchset/libverto/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha256sums=(8d1756fd704f147549f606cd987050fb94b0b1ff621ea6aa4d6bf0b74450468a)
build() {
cd ${pkgname}-${pkgver}
${CONFIGURE} \
--disable-static \
--with-libevent \
--without-libev \
--without-glib
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}