1
0
forked from ports/contrib

objfw: explicitly use clang and openssl

This commit is contained in:
Tim Biermann 2023-10-08 23:22:41 +02:00
parent 467b2bc07d
commit 6a98ce314c
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+HicFKcZ7ZuAv1yi2ff/U0NCmIUlA4/SsHvzDle2tM7EuU1+pQVI1z+rd5I3x6bwEyCxaaR/CEA/rUkpzzFZwI=
SHA256 (Pkgfile) = 7cb6666110b706443296109b2e671a1f8b99cbef839c6ba2c5310760e8016d72
RWSagIOpLGJF3+KN2MtXk5KVIpUksLOLb77TgjK3D1nsfqi/pbuhczIkYiwGitjbY00INas9w1H/hbmI0PbmHDaFjQWBgu8yPAE=
SHA256 (Pkgfile) = 9564fad11bc54692ed2d38bb784a8c0ea6c4120e5656ecd2317652ebb505da4e
SHA256 (.footprint) = a3218caf60949d5902f04cafa09918049335ffaf5f63f50d24dc6b7d48b1b560
SHA256 (objfw-1.0.4.tar.gz) = c62c61fc3f1b2d5c1d78369c602a6e82b32ade5c8ec0e9c410646d1554bf1e26

View File

@ -11,8 +11,9 @@ source=(https://objfw.nil.im/downloads/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
./configure \
--prefix=/usr \
--with-tls=openssl \
OBJC=clang
make DESTDIR=$PKG install
}