mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
init
This commit is contained in:
commit
2a2b782825
4 changed files with 54 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
pkgbase = libeventemitter-nightly
|
||||
pkgdesc = A Lightweight, NTS, C Event Emitter Library
|
||||
pkgver = Template
|
||||
pkgrel = 1
|
||||
url = https://github.com/LesBoys43/libeventemitter.git
|
||||
arch = x86_64
|
||||
license = BSD-3
|
||||
source = https://example.com/
|
||||
depends = glib2
|
||||
makedepends = 7zip
|
||||
|
||||
pkgname = libeventemitter-nightly
|
||||
12
.SRCINFO.in
Normal file
12
.SRCINFO.in
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
pkgbase = libeventemitter-nightly
|
||||
pkgdesc = A Lightweight, NTS, C Event Emitter Library
|
||||
pkgver = @VERSION@
|
||||
pkgrel = 1
|
||||
url = https://github.com/LesBoys43/libeventemitter.git
|
||||
arch = x86_64
|
||||
license = BSD-3
|
||||
source = @URL@
|
||||
depends = glib2
|
||||
makedepends = 7zip
|
||||
|
||||
pkgname = libeventemitter-nightly
|
||||
15
PKGBUILD
Normal file
15
PKGBUILD
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgname=libeventemitter-nightly
|
||||
pkgver=Template
|
||||
pkgrel=1
|
||||
pkgdesc='A Lightweight, NTS, C Event Emitter Library'
|
||||
arch=('x86_64')
|
||||
license=('BSD-3')
|
||||
url='https://github.com/LesBoys43/libeventemitter.git'
|
||||
source=("https://example.com/")
|
||||
makedepends=("7zip")
|
||||
depends=("glib2")
|
||||
|
||||
package(){
|
||||
cd "$srcdir"
|
||||
7z x *.7z -o$pkgdir
|
||||
}
|
||||
15
PKGBUILD.in
Normal file
15
PKGBUILD.in
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgname=libeventemitter-nightly
|
||||
pkgver=@VERSION@
|
||||
pkgrel=1
|
||||
pkgdesc='A Lightweight, NTS, C Event Emitter Library'
|
||||
arch=('x86_64')
|
||||
license=('BSD-3')
|
||||
url='https://github.com/LesBoys43/libeventemitter.git'
|
||||
source=("@URL@")
|
||||
makedepends=("7zip")
|
||||
depends=("glib2")
|
||||
|
||||
package(){
|
||||
cd "$srcdir"
|
||||
7z x *.7z -o$pkgdir
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue