contrib/objfw/Pkgfile

20 lines
441 B
Plaintext
Raw Normal View History

2023-08-29 20:13:58 +02:00
# Description: a portable, lightweight framework for the Objective-C language
# URL: https://objfw.nil.im/doc/trunk/README.md
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-09-10 19:03:29 +02:00
# Depends on: clang openssl
2023-08-29 20:13:58 +02:00
name=objfw
2023-11-05 20:25:18 +01:00
version=1.0.5
2023-08-29 20:13:58 +02:00
release=1
source=(https://objfw.nil.im/downloads/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-tls=openssl \
OBJC=clang
2023-08-29 20:13:58 +02:00
make DESTDIR=$PKG install
}