blob: 1495e1440002510adac92eddcaf33ba9afd4e79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Tianhao Wang <i AT shrik3 DOT com>
# Maintained by (2018 - 2024): Brian Bidlock <bidulock@openss7.org>
pkgname=libpcl
pkgver=1.12
pkgrel=5
pkgdesc='The Portable Coroutine Library (PCL) implements the low level functionality for coroutines'
license=(GPL-2.0-or-later)
url='http://www.xmailserver.org/libpcl.html'
arch=('x86_64' 'i686')
depends=(glibc)
source=(http://www.xmailserver.org/pcl-$pkgver.tar.gz)
sha1sums=('a206c8fb5a96e65005f414ac46aeccd4b3603c8d')
build() {
cd pcl-$pkgver
./configure --prefix=/usr
make
}
package() {
cd pcl-$pkgver
make DESTDIR="$pkgdir" install
}
|