[lilac] updated to 1.2.9.r8.gded857e-1

This commit is contained in:
lilac 2022-11-10 13:46:53 +08:00
parent 1452572993
commit fa5b0b0ae7
2 changed files with 10 additions and 15 deletions

View File

@ -1,16 +1,15 @@
pkgbase = xfel-git
pkgdesc = Tiny FEL tools for allwinner SOC, support RISC-V D1 chip.
pkgver = 1.2.6.r0.g2332380
pkgver = 1.2.9.r8.gded857e
pkgrel = 1
url = https://github.com/xboot/xfel
arch = any
arch = x86_64
license = MIT
makedepends = git
makedepends = gcc
depends = libusb
provides = xfel-git
conflicts = xfel-git
provides = xfel
conflicts = xfel
options = !strip
source = xfel::git+https://github.com/xboot/xfel.git
sha256sums = SKIP

View File

@ -1,20 +1,16 @@
# Maintainer: taotieren <admin@taotieren.com>
pkgname=xfel-git
pkgver=1.2.6.r0.g2332380
pkgver=1.2.9.r8.gded857e
pkgrel=1
pkgdesc="Tiny FEL tools for allwinner SOC, support RISC-V D1 chip."
arch=('any')
arch=('x86_64')
url="https://github.com/xboot/xfel"
license=('MIT')
provides=(${pkgname})
conflicts=(${pkgname} ${pkgname%-git})
#replaces=(${pkgname})
provides=(${pkgname%-git})
conflicts=(${pkgname%-git})
depends=('libusb')
makedepends=('git')
backup=()
options=('!strip')
#install=${pkgname}.install
makedepends=('git' 'gcc')
source=("${pkgname%-git}::git+${url}.git")
sha256sums=('SKIP')
@ -31,5 +27,5 @@ build() {
package() {
install -Dm0755 "${srcdir}/${pkgname%-git}/${pkgname%-git}" "${pkgdir}/usr/bin/${pkgname%-git}"
install -Dm0644 "${srcdir}/${pkgname%-git}/99-xfel.rules" "${pkgdir}/etc/udev/rules.d/99-xfel.rules"
install -Dm0644 "${srcdir}/${pkgname%-git}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE"
install -Dm0644 "${srcdir}/${pkgname%-git}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}