Skip to content

Commit

Permalink
Release! Version 1.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
m1kc committed Feb 14, 2013
1 parent 94d3c7f commit dc00bcb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
15 changes: 8 additions & 7 deletions archlinux/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# Author: m1kc <[email protected]>

pkgname=sfn
pkgver=1.1
pkgrel=3
pkgver=1.15
pkgrel=1
epoch=
pkgdesc="Utility to send files over network using direct TCP connection"
arch=('i686' 'x86_64')
url="https://github.com/m1kc/sfn"
license=('GPL')
groups=()
depends=('glibc')
makedepends=('dmd' 'libphobos')
makedepends=('dmd' 'libphobos' 'gcc')
checkdepends=()
optdepends=()
provides=()
Expand All @@ -21,11 +21,12 @@ backup=()
options=()
install=
changelog=
source=('sfn.d' 'Makefile' 'sfn.1')
source=('sfn.d' 'Makefile' 'sfn.1' 'terminal.c')
noextract=()
md5sums=('d0017bd4c4ac82206d4fcee6aa601b4e'
'f9f113e6187f8a6b647ff990167bc1c3'
'0c4802f654a1bef326ee4d49f9c76093')
md5sums=('95f89611bdbe8c670e42670d66a667be'
'd248019fc690f68dc979688451ca841a'
'bf60c24fabb64786cdd7a0fa67fa0936'
'831d81f22a8e0df8721346d2cd057b64')

build() {
# cd "$srcdir/$pkgname-$pkgver"
Expand Down
1 change: 1 addition & 0 deletions archlinux/terminal.c
2 changes: 1 addition & 1 deletion sfn.d
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void main(string[] args)
send = args[1..$];

if (help) { usage(); return; }
if (ver) { writeln("sfn 1.1" ~ "\nCompiled by: " ~ std.compiler.name); return; }
if (ver) { writeln("sfn 1.15" ~ "\nCompiled by: " ~ std.compiler.name); return; }

if ((connect is null) && !server) { usage("You must specify mode."); return; }
if ((connect !is null) && server) { usage("You must specify only one mode."); return; }
Expand Down

0 comments on commit dc00bcb

Please sign in to comment.