Browse Source
subrepo: subdir: "libcue" merged: "ef2eef4" upstream: origin: "gitea@gitea.artixlinux.org:packagesL/libcue.git" branch: "master" commit: "ef2eef4" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
7 changed files with 107 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/libcue.git |
||||
branch = master |
||||
commit = ef2eef442afd95ade6ef3451c9f4253087d79639 |
||||
parent = 63d420593e9d917c6d17fe9cc88d84659a6957f1 |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,26 @@
|
||||
# $Id$ |
||||
# Maintainer: Gaetan Bisson <bisson@archlinux.org> |
||||
# Contributor: said <atvordhosbn[at]gmail[dot]com> |
||||
|
||||
pkgname=libcue |
||||
pkgver=2.2.1 |
||||
pkgrel=1 |
||||
pkgdesc='Parses so-called cue sheets and handles the parsed data' |
||||
url='https://github.com/lipnitsk/libcue/' |
||||
arch=('x86_64') |
||||
license=('GPL2') |
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/lipnitsk/libcue/archive/v$pkgver.tar.gz") |
||||
depends=('glibc') |
||||
makedepends=('cmake') |
||||
sha512sums=('32e476cb09ed2cb2d64aaba1342fb91e77e448391b493a3a794a8d2a6723a0e6097a90b11c6ad82998cb7f270f4f18c2578d7b8575f6929c2a35502e09ebc964') |
||||
|
||||
build() { |
||||
cd ${pkgname}-${pkgver} |
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_SHARED_LIBS=ON . |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd ${pkgname}-${pkgver} |
||||
make DESTDIR="${pkgdir}" install |
||||
} |
@ -0,0 +1,26 @@
|
||||
# $Id$ |
||||
# Maintainer: Gaetan Bisson <bisson@archlinux.org> |
||||
# Contributor: said <atvordhosbn[at]gmail[dot]com> |
||||
|
||||
pkgname=libcue |
||||
pkgver=2.2.1 |
||||
pkgrel=1 |
||||
pkgdesc='Parses so-called cue sheets and handles the parsed data' |
||||
url='https://github.com/lipnitsk/libcue/' |
||||
arch=('x86_64') |
||||
license=('GPL2') |
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/lipnitsk/libcue/archive/v$pkgver.tar.gz") |
||||
depends=('glibc') |
||||
makedepends=('cmake') |
||||
sha512sums=('32e476cb09ed2cb2d64aaba1342fb91e77e448391b493a3a794a8d2a6723a0e6097a90b11c6ad82998cb7f270f4f18c2578d7b8575f6929c2a35502e09ebc964') |
||||
|
||||
build() { |
||||
cd ${pkgname}-${pkgver} |
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_SHARED_LIBS=ON . |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd ${pkgname}-${pkgver} |
||||
make DESTDIR="${pkgdir}" install |
||||
} |
Loading…
Reference in new issue