20 lines
442 B
Plaintext
20 lines
442 B
Plaintext
# 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
|
|
# Depends on: clang openssl
|
|
|
|
name=objfw
|
|
version=1.0.10
|
|
release=1
|
|
source=(https://objfw.nil.im/downloads/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-tls=openssl \
|
|
OBJC=clang
|
|
make DESTDIR=$PKG install
|
|
}
|