diff --git a/BUILD b/BUILD index c1643d1..a5411c1 100644 --- a/BUILD +++ b/BUILD @@ -3,16 +3,6 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_files", "pkg_mklink" load("@rules_pkg//pkg:deb.bzl", "pkg_deb") load("@rules_pkg//pkg:tar.bzl", "pkg_tar") -# distribution( -# name = "dist", -# bin = "//jesture", -# deb_package_desc = "TODO", -# deb_package_name = "jesture", -# maintainer = "TODO", -# product_name = "jesture", -# version = "0.5.0", -# ) - VERSION = "0.5.0" dist_vars( @@ -60,8 +50,17 @@ pkg_tar( pkg_deb( name = "jesture_deb", data = ":jesture_linux_tar", - description = "TODO", - maintainer = "", + depends = [ + "qt6-base-dev", + "qt6-wayland", + "qt6-declarative-dev", + "qt6-multimedia-dev", + "libqt6svg6-dev", + "libx11-dev", + "libopencv-dev", + ], + description = "Application to control you computer through hand gestures", + maintainer = "carson.storm@outlook.com", package = "jesture", package_file_name = "{product_name}-{version}-{arch}.deb", package_variables = ":jesture_dist_vars", diff --git a/repositories.bzl b/repositories.bzl index 72f652f..85c934d 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -30,29 +30,23 @@ def jesture_repositories(): ) maybe( - git_repository, + http_archive, name = "actions", - remote = "git@capstone-cs.eng.utah.edu:jesture/actions.git", - commit = "0a2b9cbfb9fd579b1581c31241543bffdc305a69", + strip_prefix = "Actions-1.0.0", + url = "https://github.com/JestureApp/Actions/archive/refs/tags/v1.0.0.zip", ) - # maybe( - # native.local_repository, - # name = "actions", - # path = "../Actions", - # ) - maybe( - git_repository, + http_archive, name = "jesturepipe", - remote = "git@capstone-cs.eng.utah.edu:jesture/jesturepipe.git", - commit = "632ca3728f1d4c94f1f5714876d78e85475218fb", + strip_prefix = "JesturePipe-1.0.0", + url = "https://github.com/JestureApp/JesturePipe/archive/refs/tags/v1.0.0.zip", ) - # maybe( - # native.local_repository, + # git_repository, # name = "jesturepipe", - # path = "../JesturePipe", + # remote = "git@capstone-cs.eng.utah.edu:jesture/jesturepipe.git", + # commit = "632ca3728f1d4c94f1f5714876d78e85475218fb", # ) http_archive(