-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPKGBUILD
131 lines (127 loc) · 2.24 KB
/
PKGBUILD
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
# Maintainer: <ivo@arch>
pkgname=dot-org-files
pkgver=fe3ffc5
pkgrel=1
epoch=
pkgdesc="A package to set up my archlinux working environment"
arch=('i686')
url="https://github.com/ivoarch/.dot-org-files"
license=('UNLICENSE')
groups=()
depends=("abs"
"arch-wiki-lite"
"htop"
"pkgstats"
"pkgfile"
"reflector"
"gstreamer0.10"
"gstreamer"
"git"
"python-pip"
"sbcl"
"sxiv"
"xorg-server"
"xorg-xinit"
"xorg-utils"
"xorg-server-utils"
"xorg-xfontsel"
"xorg-xlsfonts"
"emacs"
"xf86-video-intel"
"xf86-input-synaptics"
"ttf-dejavu"
"xorg-xlsfonts"
"terminus-font"
"imagemagick"
"scrot"
"wireless_tools"
"dosfstools"
"rfkill"
"w3m"
"offlineimap"
"ffmpeg"
"mplayer"
"youtube-dl"
"flashplugin"
"openssh"
"alsa-oss"
"alsa-plugins"
"alsa-utils"
"urxvt-perls"
"xterm"
"screen"
"zsh"
"acpi"
"lsof"
"moreutils"
"mlocate"
"p7zip"
"unrar"
"unzip"
"zip"
"xclip"
"xdotool"
"xdg-user-dirs"
"xorg-xmessage"
"wget"
"wpa_supplicant"
"ghostscript"
"dialog"
"xulrunner"
"yajl"
"pkgbuild-introspection"
# warning:
# Pacman can not resolve dependencies only found in the AUR for you.
# Look at using an AUR helper to automatically install dependencies from the AUR.
#
# From the AUR:
# "kernel-netbook"
# "profile-sync-daemon"
# "profile-cleaner"
# "speedtest-cli"
# "dropbox"
# "dropbox-cli"
# "conkeror-git"
# "cower-git"
# "transmission-gtk2"
# "itmages-upload.git"
# "mu-git"
# "stint-git"
# "trash-cli-git"
# "python-pafy-git"
# "ttf-monaco"
# "ttf-anonymous-pro"
# "mps-youtube-git"
# "antigen-git"
# "ratpoison-patched-git"
# "perl-config-general"
# "perl-getopt-long-descriptive"
# "lc-git"
# "xpdf"
# "urxvt-font-size-git"
# "rxvt-unicode-patched"
)
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
noextract=()
source=("git+https://github.com/ivoarch/.dot-org-files.git")
md5sums=('SKIP')
gitname=".dot-org-files"
pkgver() {
cd $srcdir/$gitname
git describe --always | sed 's|-|.|g'
}
package() {
cd $srcdir/$gitname
exit
}
# vim:set ts=2 sw=2 et: