blob: cdaa37d5869f140e827933e5d9749d7f837f058c (
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
|
pkgname=dotify
pkgver=2.1.3
pkgrel=4
pkgdesc="Next-generation music player with a modern interface and advanced features"
arch=('x86_64')
url="https://sourceforge.net/projects/dotify/files/dotify/Dotify_2.1.3_amd64.deb/download"
license=('proprietary')
depends=(
'webkit2gtk-4.1'
'libappindicator-gtk3'
'glib2'
'gtk3'
'libsoup3'
'curl'
'openssl'
'cairo'
'pango'
'gdk-pixbuf2'
'pkgconf'
'libtool'
'desktop-file-utils'
'hicolor-icon-theme'
)
source=("https://sourceforge.net/projects/dotify/files/dotify/Dotify_2.1.3_amd64.deb/download")
sha256sums=('SKIP')
package() {
cd "${srcdir}"
# Распаковка .deb
ar x download
# Извлечение содержимого пакета
tar -xf data.tar.* -C "${pkgdir}"
}
|