update+delete some packages
parent
3baefde685
commit
09e3d9df8c
@ -0,0 +1,43 @@
|
||||
# Maintainer: Pietro Carrara <pbcarrara@inf.ufrgs.br>
|
||||
|
||||
pkgname=digimend-drivers-git-dkms
|
||||
pkgver=10.r0.gec5c16d
|
||||
pkgrel=1
|
||||
pkgdesc='Linux kernel modules (DKMS) for non-Wacom USB graphics tablets. Git version.'
|
||||
arch=('any')
|
||||
url='https://digimend.github.io'
|
||||
license=('GPL2')
|
||||
depends=('dkms')
|
||||
optdepends=('xf86-input-wacom: for xorg wacom driver support')
|
||||
makedepends=('git')
|
||||
conflicts=(digimend-kernel-drivers digimend-kernel-drivers-dkms)
|
||||
provides=(digimend-kernel-drivers)
|
||||
|
||||
source=('git+https://github.com/DIGImend/digimend-kernel-drivers.git')
|
||||
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd digimend-kernel-drivers
|
||||
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
package() {
|
||||
cd digimend-kernel-drivers
|
||||
|
||||
# Udev rules
|
||||
install -D -m 0755 hid-rebind "$pkgdir"/etc/udev/rules.d/hid-rebind
|
||||
install -D -m 0644 udev.rules "$pkgdir"/etc/udev/rules.d/90-digimend.rules
|
||||
|
||||
# Use wacom drivers with supported tablets
|
||||
install -D -m 0644 xorg.conf "$pkgdir"/usr/share/X11/xorg.conf.d/50-digimend.conf
|
||||
|
||||
# DKMS config
|
||||
install -Dm644 dkms.conf "$pkgdir"/usr/src/digimend-${pkgver}/dkms.conf
|
||||
|
||||
# Depmod config
|
||||
install -D -m 0644 depmod.conf "$pkgdir"/etc/depmod.d/digimend.conf
|
||||
|
||||
# Add source files to the DKMS tree
|
||||
cp -r ./* "$pkgdir/usr/src/digimend-$pkgver"
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
/imagick-*.tgz
|
||||
/php-imagick-*.pkg.tar.xz
|
||||
/php-imagick-*.src.tar.gz
|
||||
/pkg/
|
||||
/src/
|
@ -1,10 +0,0 @@
|
||||
FROM nubs/arch-build
|
||||
|
||||
MAINTAINER Spencer Rinehart <anubis@overthemonkey.com>
|
||||
|
||||
USER root
|
||||
|
||||
RUN pacman --sync --refresh --noconfirm --noprogressbar --quiet
|
||||
RUN pacman --sync --noconfirm --noprogressbar --quiet php imagemagick
|
||||
|
||||
USER build
|
@ -1,21 +0,0 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014-2016 Spencer Rinehart
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -1,31 +0,0 @@
|
||||
# Contributor: Spencer Rinehart <anubis@overthemonkey.com>
|
||||
|
||||
pkgname=php-imagick
|
||||
_extname=imagick
|
||||
pkgver=3.4.3
|
||||
pkgrel=5
|
||||
pkgdesc="PHP extension for IMagick"
|
||||
arch=('i686' 'x86_64' 'armv7h')
|
||||
url="https://pecl.php.net/package/${_extname}"
|
||||
license=('PHP')
|
||||
depends=('php>=5.4.0' 'imagemagick>=6.5.3')
|
||||
backup=("etc/php/conf.d/${_extname}.ini")
|
||||
install="php-${_extname}.install"
|
||||
source=("https://pecl.php.net/get/${_extname}-${pkgver}.tgz")
|
||||
md5sums=('d0ee25c007cd2a28cefccc0b9ee63a28')
|
||||
|
||||
build() {
|
||||
cd "${_extname}-${pkgver}"
|
||||
|
||||
phpize
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${_extname}-${pkgver}"
|
||||
|
||||
make INSTALL_ROOT="${pkgdir}" install
|
||||
echo "extension=${_extname}.so" > "${_extname}.ini"
|
||||
install -D -m644 "${_extname}.ini" "${pkgdir}/etc/php/conf.d/${_extname}.ini"
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
# php-imagick-aur
|
||||
An [AUR] package build for PHP's [imagick] extension.
|
||||
|
||||
## Building
|
||||
You can of course build this package using [makepkg], but the recommended way
|
||||
of building this package is using [Docker]. This can be done like so:
|
||||
|
||||
```bash
|
||||
docker build --tag php-imagick-aur .
|
||||
docker run --rm --volume "$(pwd):/package" php-imagick-aur
|
||||
```
|
||||
|
||||
Alternatively, using [Docker Compose]:
|
||||
|
||||
```bash
|
||||
docker-compose run build
|
||||
```
|
||||
|
||||
This will start create a docker image tagged as php-imagick-aur and build the
|
||||
package inside the container. As a result you should get the built package in
|
||||
your current directory.
|
||||
|
||||
## License
|
||||
php-imagick-aur is licensed under the MIT license. See [LICENSE] for the full
|
||||
license text.
|
||||
|
||||
[AUR]: https://aur.archlinux.org/
|
||||
[imagick]: https://pecl.php.net/package/imagick
|
||||
[makepkg]: https://wiki.archlinux.org/index.php/Makepkg
|
||||
[Docker]: https://www.docker.com/
|
||||
[Docker Compose]: https://docs.docker.com/compose/
|
||||
[LICENSE]: https://github.com/nubs/php-imagick-aur/blob/master/LICENSE
|
@ -1,4 +0,0 @@
|
||||
build:
|
||||
build: .
|
||||
volumes:
|
||||
- ".:/package"
|
@ -1,13 +0,0 @@
|
||||
post_install() {
|
||||
echo '
|
||||
==> PHP extension
|
||||
|
||||
A config file was stored under /etc/php/conf.d/ with the extension enabled.
|
||||
'
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -0,0 +1,26 @@
|
||||
# Maintainer: Alexey Peschany <nelex111@gmail.com>
|
||||
# Contributor: Frederik Schwan <freswa at archlinux dot org>
|
||||
# Contributor: Giovanni Harting <539@idlegandalf.com>
|
||||
# Contributor: aimileus <me at aimileus dot nl>
|
||||
# Contributor: Salvador Pardiñas <darkfm@vera.com.uy>
|
||||
|
||||
pkgname=woeusb
|
||||
pkgver=5.1.0
|
||||
pkgrel=1
|
||||
pkgdesc='A Linux program to create Windows USB stick installer from a Windows DVD or an image'
|
||||
arch=('any')
|
||||
url='https://github.com/WoeUSB/WoeUSB'
|
||||
license=('GPL3')
|
||||
depends=('dosfstools' 'grub' 'ntfs-3g' 'parted' 'wget' 'wimlib')
|
||||
provides=('woeusb')
|
||||
source=("https://github.com/WoeUSB/WoeUSB/releases/download/v${pkgver}/woeusb-${pkgver}.bash")
|
||||
md5sums=(e87d885b326f18780da4f22900fc2461)
|
||||
|
||||
prepare() {
|
||||
chmod +x woeusb-$pkgver.bash
|
||||
mv woeusb-$pkgver.bash woeusb
|
||||
}
|
||||
|
||||
package() {
|
||||
install -D -t "$pkgdir/usr/bin" "$srcdir/woeusb"
|
||||
}
|
Loading…
Reference in New Issue