mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-21 08:15:01 -05:00
remove more unneeded packages
This commit is contained in:
parent
1765d161e9
commit
1170d1568d
4
ppa
4
ppa
@ -169,6 +169,10 @@ undo() {
|
||||
patch -p1 -R < undo.diff
|
||||
}
|
||||
|
||||
grep_deps() {
|
||||
grep "$1" src/*/PKGBUILD
|
||||
}
|
||||
|
||||
if [ "$#" -gt 0 ]; then
|
||||
[ -d "$src_dir" ] || mkdir -p "$src_dir"
|
||||
[ -d "$pkg_dir" ] || mkdir -p "$pkg_dir"
|
||||
|
@ -1,37 +0,0 @@
|
||||
# Maintainer: mrxx <mrxx at cyberhome dot at>
|
||||
|
||||
pkgname=dislocker
|
||||
pkgver=0.7.1
|
||||
pkgrel=2
|
||||
pkgdesc="Read BitLocker encrypted volumes under Linux"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.hsc.fr/ressources/outils/dislocker"
|
||||
license=('GPL2')
|
||||
depends=('fuse' 'mbedtls' 'ruby')
|
||||
makedepends=('make' 'cmake')
|
||||
conflicts=('dislocker-git')
|
||||
optdepends=('ntfs-3g: NTFS file system support')
|
||||
source=(https://github.com/Aorimn/dislocker/archive/v$pkgver.tar.gz)
|
||||
sha1sums=('0c5c62f63ba587663eb0474f1bd6ca7e345fe977')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
# Fix v0.7 upstream path error
|
||||
sed -i 's/DIS_MAN \${PROJECT_SOURCE_DIR}/DIS_MAN ../' src/CMakeLists.txt
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-Dlibdir=/usr/lib \
|
||||
-D WARN_FLAGS:STRING="-Wall -Wextra" \
|
||||
.
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README
|
||||
install -Dm644 CHANGELOG.md ${pkgdir}/usr/share/doc/${pkgname}/CHANGELOG
|
||||
install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
||||
}
|
5
src/libblocksruntime/.gitignore
vendored
5
src/libblocksruntime/.gitignore
vendored
@ -1,5 +0,0 @@
|
||||
/src/
|
||||
/pkg/
|
||||
*.orig.tar.gz
|
||||
*.pkg.tar.xz
|
||||
*.src.tar.gz
|
@ -1,29 +0,0 @@
|
||||
# Maintainer: Michael Hansen <zrax0111 gmail com>
|
||||
|
||||
pkgname=libblocksruntime
|
||||
pkgver=0.4.1
|
||||
pkgrel=1
|
||||
pkgdesc="compiler-rt Blocks runtime library for Clang"
|
||||
arch=("i686" "x86_64")
|
||||
url="https://compiler-rt.llvm.org"
|
||||
license=("custom:University of Illinois" "MIT")
|
||||
depends=("clang")
|
||||
source=("http://http.debian.net/debian/pool/main/libb/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz")
|
||||
sha256sums=("7807e18d7d6cabd90f77c8b8a8ebd472516fa4ed6a02df82e0c33b1c5e112abc")
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make install DESTDIR="${pkgdir}"
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
# Maintainer: Stephen Brennan <smb196@case.edu>
|
||||
pkgname=libcommuni
|
||||
pkgver=3.5.0
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc="A cross-platform IRC framework written with Qt."
|
||||
arch=('any')
|
||||
url="https://communi.github.io/"
|
||||
license=('custom')
|
||||
groups=()
|
||||
depends=('qt5-declarative')
|
||||
makedepends=()
|
||||
checkdepends=()
|
||||
optdepends=()
|
||||
provides=($pkgname)
|
||||
conflicts=($pkgname)
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=("libcommuni-v$pkgver.tar.gz::https://github.com/communi/$pkgname/archive/v$pkgver.tar.gz")
|
||||
noextract=()
|
||||
md5sums=(2b62f599800962b2350cbd7ca2fc05ae)
|
||||
validpgpkeys=()
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
qmake
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make -k check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make INSTALL_ROOT="$pkgdir" install
|
||||
mkdir -p "$pkgdir/usr/share/licenses/${pkgname}/"
|
||||
install -m644 LICENSE \
|
||||
"$pkgdir/usr/share/licenses/${pkgname}/"
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
# Maintainer: Daniel M. Capella <polyzen@archlinux.info>
|
||||
# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
|
||||
|
||||
pkgname=pacman-contrib
|
||||
pkgver=0.0.1.r13.ge3536de
|
||||
pkgrel=1
|
||||
pkgdesc='pacman contributions (Git version)'
|
||||
url=https://git.archlinux.org/pacman-contrib.git
|
||||
arch=('i686' 'x86_64')
|
||||
arch=('any')
|
||||
license=('GPL')
|
||||
depends=('pacman') # Change to 'pacman' after release 5.0.2
|
||||
makedepends=('asciidoc' 'git')
|
||||
source=("git+$url")
|
||||
sha512sums=('SKIP')
|
||||
|
||||
#pkgver() {
|
||||
# cd ${pkgname}
|
||||
# git describe --long --tags | sed -r 's/^v//; s/([^-]*-g)/r\1/; s/-/./g'
|
||||
#}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --enable-git-version \
|
||||
--with-vim-dir=/usr/share/vim/vimfiles
|
||||
make V=1
|
||||
}
|
||||
|
||||
check() {
|
||||
make -C ${pkgname} check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}
|
||||
make DESTDIR="$pkgdir" install
|
||||
rm "${pkgdir}/usr/bin/pacsort"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,74 +0,0 @@
|
||||
# Maintainer: Dave Reisner <d@falconindy.com>
|
||||
# Contributor: Thomas Dziedzic < gostrc at gmail >
|
||||
# Contributor: godane <slaxemulator@gmail.com.com>
|
||||
# Contributor: Andres Perera <aepd87@gmail.com>
|
||||
|
||||
pkgname=pacman
|
||||
pkgver=5.0.1.96.gabb0578
|
||||
pkgrel=2
|
||||
pkgdesc="A library-based package manager with dependency support. git version."
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.archlinux.org/pacman/"
|
||||
license=('GPL')
|
||||
depends=('bash' 'curl' 'gpgme' 'libarchive' 'pacman-mirrorlist')
|
||||
makedepends=('git' 'asciidoc')
|
||||
optdepends=('fakeroot: for makepkg usage as normal user')
|
||||
checkdepends=('python2' 'fakechroot')
|
||||
provides=("pacman=$pkgver" 'libalpm.so')
|
||||
options=('!libtool' '!strip')
|
||||
backup=(etc/pacman.conf
|
||||
etc/makepkg.conf)
|
||||
#source=(git://git.archlinux.org/pacman.git)
|
||||
#source=("git+file:///home/mopar/projects/pacman")
|
||||
source=("git+https://github.com/moparisthebest/pacman")
|
||||
sha1sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "pacman"
|
||||
|
||||
./autogen.sh
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--enable-doc \
|
||||
--enable-git-version \
|
||||
--enable-debug \
|
||||
--with-scriptlet-shell=/usr/bin/bash \
|
||||
--with-ldconfig=/usr/bin/ldconfig
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
make -C "pacman" check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "pacman"
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
# set things correctly in the default conf file
|
||||
case $CARCH in
|
||||
i686)
|
||||
mychost="i686-pc-linux-gnu"
|
||||
myflags="-march=i686 "
|
||||
;;
|
||||
x86_64)
|
||||
mychost="x86_64-unknown-linux-gnu"
|
||||
myflags="-march=x86-64 "
|
||||
;;
|
||||
esac
|
||||
|
||||
# install completion files
|
||||
rm -r "$pkgdir/etc/bash_completion.d"
|
||||
install -Dm644 scripts/completion/bash_completion "$pkgdir/usr/share/bash-completion/completions/pacman"
|
||||
for f in makepkg pacman-key; do
|
||||
ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
|
||||
done
|
||||
|
||||
install -Dm644 scripts/completion/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman
|
||||
}
|
||||
|
||||
# vim: set ts=2 sw=2 et:
|
@ -1,27 +0,0 @@
|
||||
# Maintainer: Chris Magyar <c.magyar.ec@gmail.com>
|
||||
pkgname=ramroot
|
||||
pkgver=1.1.8
|
||||
pkgrel=1
|
||||
pkgdesc="Load root filesystem completely to RAM during boot"
|
||||
arch=('any')
|
||||
url="https://github.com/arcmags/$pkgname"
|
||||
license=('GPL')
|
||||
depends=('sudo')
|
||||
conflicts=('liveroot')
|
||||
install=ramroot.install
|
||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
|
||||
md5sums=('9412771e7ba0736c37d87f05c28abe24')
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
install -D -m644 ./lib/etc/issue \
|
||||
"$pkgdir/usr/lib/ramroot/etc/issue"
|
||||
install -D -m644 ./lib/hooks/ramroot \
|
||||
"$pkgdir/usr/lib/ramroot/hooks/ramroot"
|
||||
install -D -m644 ./lib/install/ramroot \
|
||||
"$pkgdir/usr/lib/ramroot/install/ramroot"
|
||||
install -D -m755 ./ramroot \
|
||||
"$pkgdir/usr/bin/ramroot"
|
||||
install -D -m644 ./lib/man/ramroot.8 \
|
||||
"$pkgdir/usr/share/man/man8/ramroot.8"
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# ensure ramroot is fully removed before uninstalling:
|
||||
pre_remove() {
|
||||
/usr/bin/ramroot remove
|
||||
}
|
Loading…
Reference in New Issue
Block a user