Browse Source
subrepo: subdir: "libdvdnav" merged: "ad048c6" upstream: origin: "gitea@gitea.artixlinux.org:packagesL/libdvdnav.git" branch: "master" commit: "ad048c6" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
7 changed files with 131 additions and 0 deletions
@ -0,0 +1,33 @@
|
||||
# ---> ArchLinuxPackages |
||||
*.tar |
||||
*.tar.* |
||||
*.jar |
||||
*.exe |
||||
*.msi |
||||
*.zip |
||||
*.tgz |
||||
*.log |
||||
*.log.* |
||||
*.sig |
||||
|
||||
pkg/ |
||||
src/ |
||||
|
||||
|
||||
# ---> Archives |
||||
*.7z |
||||
*.rar |
||||
*.gz |
||||
*.bzip |
||||
*.bz2 |
||||
*.xz |
||||
*.lzma |
||||
*.cab |
||||
|
||||
# ---> systemd |
||||
*.service |
||||
*.socket |
||||
*.timer |
||||
|
||||
# ---> snap |
||||
*.snap |
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing) |
||||
; |
||||
; This subdirectory is a git "subrepo", and this file is maintained by the |
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme |
||||
; |
||||
[subrepo] |
||||
remote = gitea@gitea.artixlinux.org:packagesL/libdvdnav.git |
||||
branch = master |
||||
commit = ad048c6b5a9ccb5f17909c2d93f37d71457d9c5b |
||||
parent = 7d7dfd314b9fc376cf9592b9b87803f130b1c92d |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,38 @@
|
||||
# $Id$ |
||||
# Maintainer: Jan de Groot <jgc@archlinux.org> |
||||
# Contributor: Arjan <arjan@archlinux.org> |
||||
# contributor Sarah Hay <sarahhay@mb.sympatico.ca> |
||||
|
||||
pkgname=libdvdnav |
||||
pkgver=6.0.0 |
||||
pkgrel=1 |
||||
pkgdesc="The library for xine-dvdnav plugin." |
||||
arch=('x86_64') |
||||
license=('GPL') |
||||
url="https://www.videolan.org/developers/libdvdnav.html" |
||||
depends=('libdvdread') |
||||
makedepends=('git') |
||||
_commit=dcb9109e45ccd304ec82a7c7bf46cca63620adf9 # tags/6.0.0^0 |
||||
source=("git+https://code.videolan.org/videolan/libdvdnav.git#commit=$_commit") |
||||
sha256sums=('SKIP') |
||||
|
||||
pkgver() { |
||||
cd $pkgname |
||||
git describe --tags | sed -e 's/-/+/g' |
||||
} |
||||
|
||||
prepare() { |
||||
cd $pkgname |
||||
autoreconf -fi |
||||
} |
||||
|
||||
build() { |
||||
cd $pkgname |
||||
./configure --prefix=/usr |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd $pkgname |
||||
make DESTDIR="${pkgdir}" install |
||||
} |
@ -0,0 +1,38 @@
|
||||
# $Id$ |
||||
# Maintainer: Jan de Groot <jgc@archlinux.org> |
||||
# Contributor: Arjan <arjan@archlinux.org> |
||||
# contributor Sarah Hay <sarahhay@mb.sympatico.ca> |
||||
|
||||
pkgname=libdvdnav |
||||
pkgver=6.0.0 |
||||
pkgrel=1 |
||||
pkgdesc="The library for xine-dvdnav plugin." |
||||
arch=('x86_64') |
||||
license=('GPL') |
||||
url="https://www.videolan.org/developers/libdvdnav.html" |
||||
depends=('libdvdread') |
||||
makedepends=('git') |
||||
_commit=dcb9109e45ccd304ec82a7c7bf46cca63620adf9 # tags/6.0.0^0 |
||||
source=("git+https://code.videolan.org/videolan/libdvdnav.git#commit=$_commit") |
||||
sha256sums=('SKIP') |
||||
|
||||
pkgver() { |
||||
cd $pkgname |
||||
git describe --tags | sed -e 's/-/+/g' |
||||
} |
||||
|
||||
prepare() { |
||||
cd $pkgname |
||||
autoreconf -fi |
||||
} |
||||
|
||||
build() { |
||||
cd $pkgname |
||||
./configure --prefix=/usr |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd $pkgname |
||||
make DESTDIR="${pkgdir}" install |
||||
} |
Loading…
Reference in new issue