Skip to content

Commit

Permalink
git subrepo clone ssh+git://aur@aur4.archlinux.org/i3-ipc.git i3-ipc
Browse files Browse the repository at this point in the history
subrepo:
  subdir:   "i3-ipc"
  merged:   "520bcc1"
upstream:
  origin:   "ssh+git://aur@aur4.archlinux.org/i3-ipc.git"
  branch:   "master"
  commit:   "520bcc1"
git-subrepo:
  version:  "0.3.0"
  origin:   "???"
  commit:   "???"
  • Loading branch information
badboy committed Mar 29, 2016
1 parent 7ea00f0 commit 496fba2
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 0 deletions.
19 changes: 19 additions & 0 deletions i3-ipc/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
pkgbase = i3-ipc
pkgdesc = inter-process communication with i3, the improved tiling window manager.
pkgver = 0.2.0
pkgrel = 1
url = http://github.com/badboy/i3-ipc
install = i3-ipc.install
arch = any
license = custom
depends = i3-wm
depends = ruby
source = http://github.com/badboy/i3-ipc/raw/v0.2.0/i3-ipc
source = http://github.com/badboy/i3-ipc/raw/v0.2.0/man/i3-ipc.1
source = http://github.com/badboy/i3-ipc/raw/v0.2.0/LICENSE
md5sums = 7696d0e53ebfb3a261e20b1b39e4c71d
md5sums = 971bfaa7d5aff297eff60cd17c93a08d
md5sums = 2fde1ca125088725e39018124051d000

pkgname = i3-ipc

11 changes: 11 additions & 0 deletions i3-ipc/.gitrepo
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = ssh+git://aur@aur4.archlinux.org/i3-ipc.git
branch = master
commit = 520bcc1e31f76ea49ba2650c15db59ee31cc9785
parent = 7ea00f0b821db576ff309d78f656253b435d5075
cmdver = 0.3.0
33 changes: 33 additions & 0 deletions i3-ipc/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Maintainer: Jan-Erik Rediger <badboy at archlinux dot us>
pkgname=i3-ipc
pkgver=0.2.0
pkgrel=1
pkgdesc="inter-process communication with i3, the improved tiling window manager."
arch=(any)
url="http://github.com/badboy/i3-ipc"
license=('custom')
depends=('i3-wm' 'ruby')
source=(
"http://github.com/badboy/i3-ipc/raw/v${pkgver}/i3-ipc"
"http://github.com/badboy/i3-ipc/raw/v${pkgver}/man/i3-ipc.1"
"http://github.com/badboy/i3-ipc/raw/v${pkgver}/LICENSE"
)
install='i3-ipc.install'
md5sums=('7696d0e53ebfb3a261e20b1b39e4c71d'
'971bfaa7d5aff297eff60cd17c93a08d'
'2fde1ca125088725e39018124051d000')

build() {
cd "$srcdir/"

install -Dm755 i3-ipc \
${pkgdir}/usr/bin/i3-ipc || return 1

install -Dm644 i3-ipc.1 \
${pkgdir}/usr/share/man/man1/i3-ipc.1 || return 1

install -Dm644 LICENSE \
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
}

# vim:set ts=2 sw=2 et:
11 changes: 11 additions & 0 deletions i3-ipc/i3-ipc.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## arg 1: the new package version
post_install() {
echo
echo '---------------------------------------------------------------------------'
echo ' IMPORTANT NOTES:'
echo
echo 'You need eventmachine to run the latest version of i3-ipc'
echo 'Install it via gem:'
echo ' $ gem install eventmachine'
echo "---------------------------------------------------------------------------"
}

0 comments on commit 496fba2

Please sign in to comment.