diff options
author | Julian Xhokaxhiu | 2018-08-12 16:03:53 +0200 |
---|---|---|
committer | Julian Xhokaxhiu | 2018-08-12 16:03:53 +0200 |
commit | 6e21a17ea7b6019b24007ada00daf55cc30a9e0d (patch) | |
tree | 6520733e5ad5325dc1e94a7612cd754f330fcb5f | |
parent | b6c91d98e13d7fe78443944e952db24a47df52c0 (diff) | |
download | aur-6e21a17ea7b6019b24007ada00daf55cc30a9e0d.tar.gz |
11431-1
-> Hide useless GCC warning messages
-> Fix build on the latest trunk version
-> Disable temporarely DB2COM card reader until the build gets fixed
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 8 insertions, 3 deletions
@@ -1,6 +1,6 @@ pkgbase = oscam-git pkgdesc = Open Source Conditional Access Module software - pkgver = 11429 + pkgver = 11431 pkgrel = 1 url = http://www.streamboard.tv/oscam install = oscam.install @@ -4,7 +4,7 @@ # Author: Christopher Reimer <mail+vdr4arch[at]c-reimer[dot]de> # Maintainer: Julian Xhokaxhiu <info@julianxhokaxhiu.com> pkgname=oscam-git -pkgver=11429 +pkgver=11431 pkgrel=1 pkgdesc="Open Source Conditional Access Module software" url="http://www.streamboard.tv/oscam" @@ -31,13 +31,18 @@ pkgver() { build() { cd "$SRCDEST/$pkgname" + make defconfig + + ./config.sh --disable CARDREADER_DB2COM + make CONF_DIR=/var/lib/oscam \ USE_SSL=1 \ USE_LIBUSB=1 \ USE_PCSC=1 \ OSCAM_BIN=oscam \ LIST_SMARGO_BIN=list_smargo \ - SVN_REV=$pkgver + SVN_REV=$pkgver \ + EXTRA_CC_WARN=-w } package() { |