summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-04-17 20:20:15 +0300
committerDimitris Kiziridis2020-04-17 20:20:15 +0300
commit09a34151876ff5aa6a2d57c26631642e46594b25 (patch)
treef29f2b47e299bf47a066102da231c3a0f9dbb0fc
parent11bbd73bc12d07e47dd6f1b12c0f08e5eda9b970 (diff)
downloadaur-09a34151876ff5aa6a2d57c26631642e46594b25.tar.gz
Update to 2.10.35
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD25
2 files changed, 19 insertions, 16 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 373894aa8c2f..c60db3c907b3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,15 @@
pkgbase = asdcplib
- pkgdesc = open source implementation of SMPTE and the MXF Interop “Sound & Picture Track File” format
- pkgver = 1.12.60
+ pkgdesc = Open Source implementation of SMPTE and the MXF Interop “Sound & Picture Track File” format
+ pkgver = 2.10.35
pkgrel = 1
url = http://www.cinecert.com/asdcplib/
arch = i686
arch = x86_64
- license = GPL3
+ license = GPL-3.0
depends = expat
depends = openssl
- source = http://download.cinecert.com/asdcplib/asdcplib-1.12.60.tar.gz
- sha1sums = 427268c3070827af63e067ff4d87aa32fe26ac1d
+ source = https://github.com/cinecert/asdcplib/archive/rel_2_10_35.tar.gz
+ md5sums = 4639926c64c1c752ad4f1550f6a025c2
pkgname = asdcplib
diff --git a/PKGBUILD b/PKGBUILD
index 1f47f2cdd876..d7182682e4e6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,24 +1,27 @@
-# Maintainer: ianux <ianux@free.fr>
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+# Contributor: ianux <ianux@free.fr>
pkgname=asdcplib
-pkgver=1.12.60
+pkgver=2.10.35
pkgrel=1
-pkgdesc="open source implementation of SMPTE and the MXF Interop “Sound & Picture Track File” format"
+pkgdesc="Open Source implementation of SMPTE and the MXF Interop “Sound & Picture Track File” format"
arch=('i686' 'x86_64')
url="http://www.cinecert.com/asdcplib/"
-license=('GPL3')
+license=('GPL-3.0')
depends=('expat' 'openssl')
-source=(http://download.cinecert.com/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('427268c3070827af63e067ff4d87aa32fe26ac1d')
+source=("https://github.com/cinecert/asdcplib/archive/rel_2_10_35.tar.gz")
+md5sums=('4639926c64c1c752ad4f1550f6a025c2')
build() {
- cd ${pkgname}-${pkgver}
- ./configure --prefix=/usr
+ cd ${pkgname}-rel_2_10_35
+ autoreconf -if
+ ./configure --enable-freedist --enable-as-02 --prefix=/usr
make
+ make dist
}
package() {
- cd ${pkgname}-${pkgver}
+ cd ${pkgname}-rel_2_10_35
make DESTDIR=${pkgdir} install
-}
-
+ install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+} \ No newline at end of file