summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Lezaeta2016-06-02 21:32:52 -0400
committerPablo Lezaeta2016-06-02 21:32:52 -0400
commitc957bfd6929488cae774dbd14d78bc2da88317f0 (patch)
treecd9fb02c1fb37634f3304d1e438e8454f180f444
parent4ae049c1c71ffc92ee9a7d952447e34cdc79d605 (diff)
downloadaur-c957bfd6929488cae774dbd14d78bc2da88317f0.tar.gz
finally installable, now bug thema bout the -g a-O3 forced flags"
" Signed-off-by: Pablo Lezaeta <prflr88@gmail.com>
-rwxr-xr-x[-rw-r--r--].SRCINFO5
-rwxr-xr-x[-rw-r--r--].gitignore0
-rwxr-xr-x[-rw-r--r--]PKGBUILD23
3 files changed, 19 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8643ec2d2b60..f782e223a45f 100644..100755
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,14 @@
# Generated by mksrcinfo v8
-# Mon Apr 4 21:13:16 UTC 2016
+# Fri Jun 3 01:31:42 UTC 2016
pkgbase = thor-codec
pkgdesc = The Thor video codec is a block-based hybrid video codec similar in structure to widespread standards.
- pkgver = r130.50d6802
+ pkgver = r134.8d9e0c8
pkgrel = 1
url = https://tools.ietf.org/html/draft-fuldseth-netvc-thor
arch = i686
arch = x86_64
license = custom:BSD
+ depends = glibc
source = thor::git+https://github.com/cisco/thor.git
md5sums = SKIP
diff --git a/.gitignore b/.gitignore
index 00391408c1dc..00391408c1dc 100644..100755
--- a/.gitignore
+++ b/.gitignore
diff --git a/PKGBUILD b/PKGBUILD
index 5f3d66690944..1f2de6021c01 100644..100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,12 @@
pkgname=thor-codec
_pkg=thor
-pkgver=r130.50d6802
+pkgver=r134.8d9e0c8
pkgrel=1
url=https://tools.ietf.org/html/draft-fuldseth-netvc-thor
pkgdesc="The Thor video codec is a block-based hybrid video codec similar in structure to widespread standards."
license=("custom:BSD")
+depends=("glibc")
arch=("i686" "x86_64")
source=("${_pkg}::git+https://github.com/cisco/thor.git")
@@ -30,11 +31,19 @@ build() {
}
package() {
- cd "${srcdir}/${_pkg}"
+ # Binaries on src/thor/build directory
+# cd "${srcdir}/${_pkg}"
+#
+# make DESTDIR=${pkgdir} prefix=/usr \
+# localstatedir=/var sysconfdir=/etc \
+# sbindir=/usr/bin bindir=/usr/bin \
+# libdir=/usr/lib libexecdir=/usr/lib \
+# install
- make DESTDIR=${pkgdir} prefix=/usr \
- localstatedir=/var sysconfdir=/etc \
- sbindir=/usr/bin bindir=/usr/bin \
- libdir=/usr/lib libexecdir=/usr/lib \
- install
+mkdir -p "${pkgdir}/usr/bin"
+mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
+
+cp "${srcdir}/${_pkg}/build/Thordec" "${pkgdir}/usr/bin/"
+cp "${srcdir}/${_pkg}/build/Thorenc" "${pkgdir}/usr/bin/"
+cp "${srcdir}/${_pkg}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/"
}