edited before renaming

This commit is contained in:
arcan1s 2014-01-30 17:46:13 +04:00
parent feab0239a6
commit 1a5578dd73
8 changed files with 12 additions and 13 deletions

View File

@ -1,16 +1,16 @@
# Maintainer: Evgeniy "arcanis" Alexeev <arcanis.arch at gmail dot com> # Maintainer: Evgeniy "arcanis" Alexeev <arcanis.arch at gmail dot com>
pkgname=kdeplasma-applets-netctl-monitor pkgname=kdeplasma-applets-netctl
_pkgname=netctl-monitor _pkgname=netctl-plasmoid
pkgver=1.0.0 pkgver=1.0.0
pkgrel=1 pkgrel=1
pkgdesc="Plasmoid written on C++ which interacts with netctl" pkgdesc="Plasmoid written on C++ which interacts with netctl"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="http://arcan1s.github.io/projects/netctlmonitor" url="http://arcan1s.github.io/projects/netctlplasmoid"
license=('GPLv3') license=('GPLv3')
depends=('kdebase-workspace') depends=('kdebase-workspace')
makedepends=('cmake' 'automoc4') makedepends=('cmake' 'automoc4')
source=(https://github.com/arcan1s/netctlmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) source=(https://github.com/arcan1s/netctlplasmoid/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('d3ab03ddea1e4793cfc5f35a0f7a5ff1') md5sums=('d3ab03ddea1e4793cfc5f35a0f7a5ff1')
_cmakekeys="-DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) _cmakekeys="-DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix)

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
ARCHIVE="netctl-monitor" ARCHIVE="netctl-plasmoid"
SRCDIR="sources" SRCDIR="sources"
FILES="LICENSE README.md" FILES="LICENSE README.md"
IGNORELIST="CMakeLists.txt.user" IGNORELIST="CMakeLists.txt.user"

View File

@ -5,7 +5,7 @@ cmake_policy (SET CMP0002 OLD)
cmake_policy (SET CMP0011 NEW) cmake_policy (SET CMP0011 NEW)
cmake_policy (SET CMP0015 NEW) cmake_policy (SET CMP0015 NEW)
project (netctl-monitor) project (netctl-plasmoid)
set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 0) set (PROJECT_VERSION_MINOR 0)
set (PROJECT_VERSION_PATCH 0) set (PROJECT_VERSION_PATCH 0)
@ -25,7 +25,7 @@ set (CMAKE_VERBOSE_MAKEFILE ON)
# flags # flags
if (WITH_DEBUG_MODE) if (WITH_DEBUG_MODE)
add_definitions ( -DDEBUG_MODE=1 ) add_definitions (-DDEBUG_MODE=1)
endif () endif ()
if (CMAKE_COMPILER_IS_GNUCXX) if (CMAKE_COMPILER_IS_GNUCXX)
set (ADD_CXX_FLAGS "-Wall") set (ADD_CXX_FLAGS "-Wall")
@ -41,12 +41,11 @@ if (BUILD_PLASMOID)
endif () endif ()
if (BUILD_GUI) if (BUILD_GUI)
add_subdirectory (netctl-gui) add_subdirectory (gui)
endif () endif ()
if (BUILD_DATAENGINE) if (BUILD_DATAENGINE)
add_subdirectory (netctl-dataengine) add_subdirectory (dataengine)
endif () endif ()
if (BUILD_PLASMOID) if (BUILD_PLASMOID)
add_subdirectory (netctl-dataengine) add_subdirectory (plasmoid)
add_subdirectory (netctl-monitor)
endif () endif ()

View File

@ -1,5 +1,5 @@
# set project name # set project name
set (SUBPROJECT plasma_engine_netctl-dataengine) set (SUBPROJECT plasma_engine_netctl)
# find required libaries # find required libaries
find_package (KDE4 REQUIRED) find_package (KDE4 REQUIRED)

View File

@ -1,5 +1,5 @@
# set project name # set project name
set (SUBPROJECT plasma_applet_netctl-monitor) set (SUBPROJECT plasma_applet_netctl)
# find required libaries # find required libaries
find_package (KDE4 REQUIRED) find_package (KDE4 REQUIRED)