blob: 6c0b3bd2753cc2293347d3228f6909e6af7c9944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
# Contributor: Alexandru Frincu <alexandru.frincu@accenture.com>
pkgname=cm
pkgver=3.12.9
pkgrel=1
pkgdesc="fast logfile viewer for Analyzing Large Logfiles
Chipmunk is a fast logfile viewer designed for analyzing
large logfiles. It features super-fast search capabilities
and is an invaluable tool for developers who need to analyze
log data."
arch=('x86_64')
url="https://github.com/esrlabs/chipmunk"
license=('Apache-2.0')
depends=('gtk3' 'alsa-lib' 'libdrm' 'cups')
source=("https://github.com/esrlabs/chipmunk/releases/download/$pkgver/chipmunk@$pkgver-linux-portable.tgz")
build() {
cd "$srcdir"
# Extract the source code
tar xf "chipmunk@$pkgver-linux-portable.tgz"
}
package() {
# Remove existing directory structure
rm -rf "${pkgdir}/usr/lib/chipmunk"
# Set up the directory structure
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/usr/lib/chipmunk"
# Copy chipmunk release
cp -r "${srcdir}/"* "${pkgdir}/usr/lib/chipmunk"
# Create a symlink
ln -s /usr/lib/chipmunk/chipmunk "${pkgdir}/usr/bin/chipmunk"
}
sha256sums=('1f8aea63c7eb0e2a5b629960b205631fea035bd7a5f8726b01c1078c6b4e3f5d')
|