mirror of
https://github.com/archlinux/aur.git
synced 2026-02-14 20:51:54 +01:00
Automated: initialized with version 13.c450643-1
This commit is contained in:
commit
e1acef906c
2 changed files with 46 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
pkgbase = ideviceactivate-git
|
||||
pkgdesc = Restores firmware and filesystem to iPhone/iPod Touch
|
||||
pkgver = 13.c450643
|
||||
pkgrel = 1
|
||||
url = http://github.com/posixninja/ideviceactivate
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = custom
|
||||
makedepends = git
|
||||
depends = usbmuxd
|
||||
depends = libirecovery-git
|
||||
depends = libimobiledevice>=1.1.0
|
||||
source = git://github.com/posixninja/ideviceactivate
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = ideviceactivate-git
|
||||
|
||||
29
PKGBUILD
Normal file
29
PKGBUILD
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
||||
|
||||
_pkgname=ideviceactivate
|
||||
pkgname=$_pkgname-git
|
||||
pkgver=13.c450643
|
||||
pkgrel=1
|
||||
pkgdesc="Restores firmware and filesystem to iPhone/iPod Touch"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://github.com/posixninja/$_pkgname"
|
||||
license=('custom')
|
||||
depends=('usbmuxd' 'libirecovery-git' 'libimobiledevice>=1.1.0')
|
||||
makedepends=('git')
|
||||
source=(git://github.com/posixninja/$_pkgname)
|
||||
md5sums=('SKIP')
|
||||
|
||||
|
||||
pkgver() {
|
||||
cd $_pkgname
|
||||
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
install -D $srcdir/$_pkgname/src/$_pkgname $pkgdir/usr/bin/$_pkgname
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue