This repository has been archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
archrelease: copy trunk to extra-x86_64
git-svn-id: file:///srv/repos/svn-packages/svn@400130 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
anthraxx
committed
Nov 10, 2020
1 parent
76b19a1
commit c532f26
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> | ||
# Contributor: Frederick Zhang <[email protected]> | ||
|
||
pkgname=aribb25 | ||
pkgver=0.2.7 | ||
pkgrel=2 | ||
pkgdesc='Library for ARIB STD-B25, decoding JIS 8 bit characters and parsing MPEG-TS stream' | ||
url='https://code.videolan.org/videolan/aribb25' | ||
arch=('x86_64') | ||
license=('custom:ISC') | ||
depends=('glibc' 'pcsclite') | ||
provides=('libaribb25.so') | ||
source=("${url}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.bz2") | ||
sha512sums=('1f4f9aa40586d5984b30dd8972c258ef5003a60f2ab91ec56aff702be406e3d10a24868de0f188d215dbc497db23f734ffbcc8dcbc7b51de8edcfcbac7c0052e') | ||
b2sums=('c3458f76fd43516e1b114d799e0455ee9adaa9aec627ec1444219e67a01bc89a9267c287da34696ee5b8564c107f9740353af2e7a9c3e4bdea218bbb24640f71') | ||
|
||
prepare() { | ||
cd ${pkgname}-${pkgver} | ||
autoreconf -fiv | ||
} | ||
|
||
build() { | ||
cd ${pkgname}-${pkgver} | ||
./configure --prefix=/usr | ||
make | ||
} | ||
|
||
package() { | ||
cd ${pkgname}-${pkgver} | ||
make DESTDIR="${pkgdir}" install | ||
install -Dm 644 README* -t "${pkgdir}/usr/share/doc/${pkgname}" | ||
install -Dm 644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}" | ||
} | ||
|
||
# vim: ts=2 sw=2 et: |