blob: 85acbd5b8a5951f5a82370ee026b7293aeca8f4a (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: MayorBender <7480812+kingy9000@users.noreply.github.com>
# Contributor: Dan Beste <dan.ray.beste@gmail.com>
# Contributor: Justine Paul <jestine-paul@dsi.a-star.edu.sg>
# Contributor: justinus <jestine.paul@gmail.com>
pkgname='libcs50'
pkgver=10.1.0
pkgrel=1
pkgdesc="CS50 Library for C"
arch=('i686' 'x86_64')
url='https://github.com/cs50/libcs50'
license=('MIT')
groups=('cs50')
makedepends=('asciidoctor')
conflicts=('libcs50-git')
source=(
"${pkgname}-${pkgver}.tar.gz::https://github.com/cs50/${pkgname}/archive/v${pkgver}.tar.gz"
'Makefile.patch'
)
sha256sums=(
'fd91d49d12871dd32def9e3c3c333f4b00991caf7a5f046f5da065d155ed88a4'
'4a10efd4f4f6b6bb18152a4f28497f7f8562aaa5aaf50c401d308827b922ef3f'
)
prepare() {
cd "${pkgname}-${pkgver}"
patch < "${srcdir}/Makefile.patch"
}
build() {
cd "${pkgname}-${pkgver}"
# TODO: Get this fixed upstream. We should not have to unset our $CFLAGS and
# $MAKEFLAGS.
CFLAGS= MAKEFLAGS= make
}
package() {
cd "${pkgname}-${pkgver}"
# TODO: Get this fixed upstream. We should not have to unset our $CFLAGS and
# $MAKEFLAGS.
CFLAGS= MAKEFLAGS= DESTDIR="${pkgdir}/usr" make install
rm "${pkgdir}/usr/src/cs50.c"
install -d -m 755 "${pkgdir}/usr/src/libcs50"
install -m 644 src/cs50.c src/cs50.h -t "${pkgdir}/usr/src/libcs50"
}
# vim: ts=2 sw=2 et:
|